aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-categories-master-list-wombat.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@ximian.com>2001-08-09 14:24:27 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2001-08-09 14:24:27 +0800
commit8f3673b5fe40cf73bdb5fa8000c96969a9de9353 (patch)
treeaf241ed149445a2d9f54c3dd5a4e53c0d138a4b2 /e-util/e-categories-master-list-wombat.c
parent2f419416b8818dd448a4130322d6d8b25a3d2319 (diff)
downloadgsoc2013-evolution-8f3673b5fe40cf73bdb5fa8000c96969a9de9353.tar
gsoc2013-evolution-8f3673b5fe40cf73bdb5fa8000c96969a9de9353.tar.gz
gsoc2013-evolution-8f3673b5fe40cf73bdb5fa8000c96969a9de9353.tar.bz2
gsoc2013-evolution-8f3673b5fe40cf73bdb5fa8000c96969a9de9353.tar.lz
gsoc2013-evolution-8f3673b5fe40cf73bdb5fa8000c96969a9de9353.tar.xz
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-categories-master-list-wombat.c')
-rw-r--r--e-util/e-categories-master-list-wombat.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/e-util/e-categories-master-list-wombat.c b/e-util/e-categories-master-list-wombat.c
index 4cf8e78879..6eb0a2562d 100644
--- a/e-util/e-categories-master-list-wombat.c
+++ b/e-util/e-categories-master-list-wombat.c
@@ -123,6 +123,9 @@ ecmlw_destroy (GtkObject *object)
bonobo_object_release_unref (ecmlw->priv->db, &ev);
CORBA_exception_free (&ev);
+
+ if (GTK_OBJECT_CLASS (parent_class)->destroy)
+ (* GTK_OBJECT_CLASS (parent_class)->destroy) (object);
}