diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-08-18 23:37:22 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-08-18 23:37:22 +0800 |
commit | b6724cafa4c4b86c6542dbcfa66680e1b7ad2285 (patch) | |
tree | c5dbca1dd9563c97013be2c3196f033a55e93b86 /modules/calendar | |
parent | 6dd8576ebb95ff478aa96b165be5a45f902cdccd (diff) | |
download | gsoc2013-evolution-b6724cafa4c4b86c6542dbcfa66680e1b7ad2285.tar.gz gsoc2013-evolution-b6724cafa4c4b86c6542dbcfa66680e1b7ad2285.tar.zst gsoc2013-evolution-b6724cafa4c4b86c6542dbcfa66680e1b7ad2285.zip |
Remove duplicate handlers for date navigator signals.
Diffstat (limited to 'modules/calendar')
-rw-r--r-- | modules/calendar/e-cal-shell-view-private.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/modules/calendar/e-cal-shell-view-private.c b/modules/calendar/e-cal-shell-view-private.c index a81b7cd866..4573e5f4ea 100644 --- a/modules/calendar/e-cal-shell-view-private.c +++ b/modules/calendar/e-cal-shell-view-private.c @@ -62,7 +62,13 @@ static void cal_shell_view_date_navigator_date_range_changed_cb (ECalShellView *cal_shell_view, ECalendarItem *calitem) { - /* FIXME gnome-calendar.c calls update_query() here. */ + ECalShellContent *cal_shell_content; + GnomeCalendar *calendar; + + cal_shell_content = cal_shell_view->priv->cal_shell_content; + calendar = e_cal_shell_content_get_calendar (cal_shell_content); + + gnome_calendar_update_query (calendar); } static void |