diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/evolution-activity-client.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 0643956f6c..de742e8343 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2001-08-07 Not Zed <NotZed@Ximian.com> + + * evolution-activity-client.c (impl_destroy): Unref the listener + when done. + 2001-08-06 Ettore Perazzoli <ettore@ximian.com> * e-shell-folder-title-bar.c: Remove member `hbox' from `struct diff --git a/shell/evolution-activity-client.c b/shell/evolution-activity-client.c index 5536aab8ce..d7805d6583 100644 --- a/shell/evolution-activity-client.c +++ b/shell/evolution-activity-client.c @@ -251,6 +251,9 @@ impl_destroy (GtkObject *object) CORBA_exception_free (&ev); + if (priv->listener) + bonobo_object_unref(BONOBO_OBJECT(priv->listener)); + g_free (priv->new_information); g_free (priv); |