aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-tree-selection-model.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@ximian.com>2001-08-09 11:14:48 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2001-08-09 11:14:48 +0800
commit5e70f5f3dd2a1b34dcfc9fa4a7749d17762c9ea5 (patch)
treeab0c51f586ee785fcf48cbe49c7e920fff09e914 /widgets/table/e-tree-selection-model.c
parentd256cde05d619eb53188d1ef582f5c53ebebf689 (diff)
downloadgsoc2013-evolution-5e70f5f3dd2a1b34dcfc9fa4a7749d17762c9ea5.tar
gsoc2013-evolution-5e70f5f3dd2a1b34dcfc9fa4a7749d17762c9ea5.tar.gz
gsoc2013-evolution-5e70f5f3dd2a1b34dcfc9fa4a7749d17762c9ea5.tar.bz2
gsoc2013-evolution-5e70f5f3dd2a1b34dcfc9fa4a7749d17762c9ea5.tar.lz
gsoc2013-evolution-5e70f5f3dd2a1b34dcfc9fa4a7749d17762c9ea5.tar.xz
gsoc2013-evolution-5e70f5f3dd2a1b34dcfc9fa4a7749d17762c9ea5.tar.zst
gsoc2013-evolution-5e70f5f3dd2a1b34dcfc9fa4a7749d17762c9ea5.zip
Chain to the destroy handler in the parent class!
2001-08-08 Federico Mena Quintero <federico@ximian.com> * e-cell-pixbuf.c (pixbuf_destroy): Chain to the destroy handler in the parent class! * e-table-field-chooser.c (e_table_field_chooser_destroy): Likewise. Sigh. * e-table-one.c (one_destroy): Likewise. Double sigh. * e-tree-selection-model.c (etsm_destroy): Likewise. Triple sigh. svn path=/trunk/; revision=11811
Diffstat (limited to 'widgets/table/e-tree-selection-model.c')
-rw-r--r--widgets/table/e-tree-selection-model.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/widgets/table/e-tree-selection-model.c b/widgets/table/e-tree-selection-model.c
index 3c06515cc9..e359b9aa07 100644
--- a/widgets/table/e-tree-selection-model.c
+++ b/widgets/table/e-tree-selection-model.c
@@ -591,6 +591,9 @@ etsm_destroy (GtkObject *object)
g_free(etsm->priv);
etsm->priv = NULL;
+
+ if (GTK_OBJECT_CLASS (parent_class)->destroy)
+ (* GTK_OBJECT_CLASS (parent_class)->destroy) (object);
}
static void