diff options
author | Federico Mena Quintero <federico@ximian.com> | 2001-08-09 13:21:41 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2001-08-09 13:21:41 +0800 |
commit | 2d4b0e2c4be519451a992a39b8077c16472cc291 (patch) | |
tree | 9f147a2c19bdf0762b9a880beead3346c96574eb /widgets | |
parent | cd0a7332190835f0137f7fb0fd42d90f9fa55f4a (diff) | |
download | gsoc2013-evolution-2d4b0e2c4be519451a992a39b8077c16472cc291.tar.gz gsoc2013-evolution-2d4b0e2c4be519451a992a39b8077c16472cc291.tar.zst gsoc2013-evolution-2d4b0e2c4be519451a992a39b8077c16472cc291.zip |
Quintuple sigh. See below.
2001-08-09 Federico Mena Quintero <federico@ximian.com>
* gal/e-text/e-entry.c (e_entry_destroy): Quintuple sigh. See below.
* gal/util/e-bit-array.c (eba_destroy): Sextuple sigh.
svn path=/trunk/; revision=11815
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/text/e-entry.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/widgets/text/e-entry.c b/widgets/text/e-entry.c index 106cd70f73..8c116b2708 100644 --- a/widgets/text/e-entry.c +++ b/widgets/text/e-entry.c @@ -1105,6 +1105,9 @@ e_entry_destroy (GtkObject *object) g_free (entry->priv); entry->priv = NULL; + + if (GTK_OBJECT_CLASS (parent_class)->destroy) + (* GTK_OBJECT_CLASS (parent_class)->destroy) (object); } static void |