aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@ximian.com>2001-08-18 16:03:24 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2001-08-18 16:03:24 +0800
commit7b3fe06340b59ed5e1bec5b9798e3edb586be4e4 (patch)
tree75ae77decf75c903dcc9857b62754c154300dae8
parentbfa5273716a91896c48bc533e3434cec58f49b91 (diff)
downloadgsoc2013-evolution-7b3fe06340b59ed5e1bec5b9798e3edb586be4e4.tar
gsoc2013-evolution-7b3fe06340b59ed5e1bec5b9798e3edb586be4e4.tar.gz
gsoc2013-evolution-7b3fe06340b59ed5e1bec5b9798e3edb586be4e4.tar.bz2
gsoc2013-evolution-7b3fe06340b59ed5e1bec5b9798e3edb586be4e4.tar.lz
gsoc2013-evolution-7b3fe06340b59ed5e1bec5b9798e3edb586be4e4.tar.xz
gsoc2013-evolution-7b3fe06340b59ed5e1bec5b9798e3edb586be4e4.tar.zst
gsoc2013-evolution-7b3fe06340b59ed5e1bec5b9798e3edb586be4e4.zip
Chain to the destroy handler in the parent class. Hey, I'm getting used to
2001-08-18 Federico Mena Quintero <federico@ximian.com> * e-table-without.c (etw_destroy): Chain to the destroy handler in the parent class. Hey, I'm getting used to this :) svn path=/trunk/; revision=12199
-rw-r--r--widgets/table/e-table-without.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/widgets/table/e-table-without.c b/widgets/table/e-table-without.c
index 148ee5506b..06d3f86098 100644
--- a/widgets/table/e-table-without.c
+++ b/widgets/table/e-table-without.c
@@ -115,6 +115,8 @@ etw_destroy (GtkObject *object)
etw->priv = NULL;
}
+ if (GTK_OBJECT_CLASS (parent_class)->destroy)
+ (* GTK_OBJECT_CLASS (parent_class)->destroy) (object);
}
static void