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/e-splash.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'shell/e-splash.c') 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