From c2bd7a6754627f0af3d4fe2684a2576cb0f1b45d Mon Sep 17 00:00:00 2001 From: Rodney Dawes Date: Wed, 23 Jun 2004 16:10:58 +0000 Subject: Revert previous change to add the callbacks for notification of calendar 2004-06-23 Rodney Dawes * gui/calendar-component.c: Revert previous change to add the callbacks for notification of calendar selection changes (create_new_view): Update the comment for watching notification on the tasks selection to state it is for the mini tasks view svn path=/trunk/; revision=26478 --- calendar/ChangeLog | 7 +++++++ calendar/gui/calendar-component.c | 24 ++---------------------- 2 files changed, 9 insertions(+), 22 deletions(-) diff --git a/calendar/ChangeLog b/calendar/ChangeLog index f48ea19dbc..94aa13e52e 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2004-06-23 Rodney Dawes + + * gui/calendar-component.c: Revert previous change to add the + callbacks for notification of calendar selection changes + (create_new_view): Update the comment for watching notification on + the tasks selection to state it is for the mini tasks view + 2004-06-23 JP Rosevear Fixes #57862 diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c index 74852b18a3..857812f5c3 100644 --- a/calendar/gui/calendar-component.c +++ b/calendar/gui/calendar-component.c @@ -570,12 +570,6 @@ config_primary_selection_changed_cb (GConfClient *client, guint id, GConfEntry * } } -static void -config_calendars_selection_changed_cb (GConfClient *client, guint id, GConfEntry *entry, gpointer data) -{ - update_selection (data); -} - static void config_tasks_selection_changed_cb (GConfClient *client, guint id, GConfEntry *entry, gpointer data) { @@ -583,12 +577,6 @@ config_tasks_selection_changed_cb (GConfClient *client, guint id, GConfEntry *en } -static void -config_primary_calendar_selection_changed_cb (GConfClient *client, guint id, GConfEntry *entry, gpointer data) -{ - update_primary_selection (data); -} - static void config_primary_tasks_selection_changed_cb (GConfClient *client, guint id, GConfEntry *entry, gpointer data) { @@ -1126,16 +1114,8 @@ create_component_view (CalendarComponent *calendar_component) update_task_selection (component_view); update_primary_task_selection (component_view); - /* If the calendar selection changes elsewhere, update it */ - not = calendar_config_add_notification_calendars_selected (config_calendars_selection_changed_cb, - component_view); - component_view->notifications = g_list_prepend (component_view->notifications, GUINT_TO_POINTER (not)); - - not = calendar_config_add_notification_primary_calendar (config_primary_calendar_selection_changed_cb, - component_view); - component_view->notifications = g_list_prepend (component_view->notifications, GUINT_TO_POINTER (not)); - - /* If the task selection changes elsewhere, update it */ + /* If the tasks selection changes elsewhere, update it for the mini + mini tasks view sidebar */ not = calendar_config_add_notification_tasks_selected (config_tasks_selection_changed_cb, component_view); component_view->notifications = g_list_prepend (component_view->notifications, GUINT_TO_POINTER (not)); -- cgit v1.2.3