aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/tasks-component.c5
2 files changed, 10 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index b3a8607fc5..d03d0aa7e5 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,10 @@
2004-01-16 Rodrigo Moya <rodrigo@ximian.com>
+ * gui/tasks-component.c (impl_dispose): unref the activity
+ handler.
+
+2004-01-16 Rodrigo Moya <rodrigo@ximian.com>
+
* gui/tasks-component.[ch]
(tasks_component_peek_activity_handler): new function.
(impl_createControls): create a task bar also for the tasks
diff --git a/calendar/gui/tasks-component.c b/calendar/gui/tasks-component.c
index 0295b84b16..a2d39a0ce9 100644
--- a/calendar/gui/tasks-component.c
+++ b/calendar/gui/tasks-component.c
@@ -470,6 +470,11 @@ impl_dispose (GObject *object)
g_list_free (priv->notifications);
priv->notifications = NULL;
+ if (priv->activity_handler != NULL) {
+ g_object_unref (priv->activity_handler);
+ priv->activity_handler = NULL;
+ }
+
(* G_OBJECT_CLASS (parent_class)->dispose) (object);
}