diff options
author | Federico Mena Quintero <federico@ximian.com> | 2001-08-09 14:24:27 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2001-08-09 14:24:27 +0800 |
commit | 8f3673b5fe40cf73bdb5fa8000c96969a9de9353 (patch) | |
tree | af241ed149445a2d9f54c3dd5a4e53c0d138a4b2 /e-util/e-list.c | |
parent | 2f419416b8818dd448a4130322d6d8b25a3d2319 (diff) | |
download | gsoc2013-evolution-8f3673b5fe40cf73bdb5fa8000c96969a9de9353.tar.gz gsoc2013-evolution-8f3673b5fe40cf73bdb5fa8000c96969a9de9353.tar.zst gsoc2013-evolution-8f3673b5fe40cf73bdb5fa8000c96969a9de9353.zip |
Chain to the destroy handler in the parent class!
2001-08-09 Federico Mena Quintero <federico@ximian.com>
* e-categories-master-list-wombat.c (ecmlw_destroy): Chain to the
destroy handler in the parent class!
* e-list-iterator.c (e_list_iterator_destroy): Likewise. Sigh.
* e-list.c (e_list_destroy): Likewise. Double sigh.
svn path=/trunk/; revision=11819
Diffstat (limited to 'e-util/e-list.c')
-rw-r--r-- | e-util/e-list.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/e-util/e-list.c b/e-util/e-list.c index f501be5ae5..64ccea728c 100644 --- a/e-util/e-list.c +++ b/e-util/e-list.c @@ -172,5 +172,8 @@ e_list_destroy (GtkObject *object) EList *list = E_LIST(object); g_list_foreach(list->list, (GFunc) list->free, list->closure); g_list_free(list->list); + + if (GTK_OBJECT_CLASS (parent_class)->destroy) + (* GTK_OBJECT_CLASS (parent_class)->destroy) (object); } |