diff options
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-splash.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 1bd598bba6..15356d1c6f 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2001-04-13 Ettore Perazzoli <ettore@ximian.com> + + * e-splash.c (impl_destroy): Call the parent class' ::destroy + method. + 2001-04-12 Christopher James Lahey <clahey@ximian.com> * e-storage-set-view.c (etree_has_get_node_by_id, diff --git a/shell/e-splash.c b/shell/e-splash.c index 3900c8238e..055e2dc0d7 100644 --- a/shell/e-splash.c +++ b/shell/e-splash.c @@ -231,6 +231,8 @@ impl_destroy (GtkObject *object) gtk_idle_remove (priv->layout_idle_id); g_free (priv); + + (* GTK_OBJECT_CLASS (parent_class)->destroy) (object); } |