From a5e6e0b5f3e06eee5726edfe276c5d3c65bb155c Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Sat, 14 Apr 2001 02:32:15 +0000 Subject: Pull up fix from the 0-10 branch (chain the ::destroy handler for ESplash to the parent class' ::destroy handler, thus fixing an extremely stupid memory leak). svn path=/trunk/; revision=9308 --- shell/ChangeLog | 5 +++++ shell/e-splash.c | 2 ++ 2 files changed, 7 insertions(+) (limited to 'shell') 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 + + * e-splash.c (impl_destroy): Call the parent class' ::destroy + method. + 2001-04-12 Christopher James Lahey * 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); } -- cgit v1.2.3