From 5f4ca361a05c2f7489ec1e78cede43d1c7e450ed Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Thu, 9 Aug 2001 06:22:12 +0000 Subject: Chain to the destroy handler in the parent class! 2001-08-09 Federico Mena Quintero * e-calendar-item.c (e_calendar_item_destroy): Chain to the destroy handler in the parent class! * e-clipped-label.c (e_clipped_label_destroy): Likewise. Sigh. * e-dropdown-button.c (impl_destroy): Likewise. Double sigh. svn path=/trunk/; revision=11817 --- widgets/misc/e-clipped-label.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'widgets/misc/e-clipped-label.c') diff --git a/widgets/misc/e-clipped-label.c b/widgets/misc/e-clipped-label.c index 4cd6658f50..5841e70807 100644 --- a/widgets/misc/e-clipped-label.c +++ b/widgets/misc/e-clipped-label.c @@ -268,6 +268,9 @@ e_clipped_label_destroy (GtkObject *object) g_free (label->label); g_free (label->label_wc); + + if (GTK_OBJECT_CLASS (parent_class)->destroy) + (* GTK_OBJECT_CLASS (parent_class)->destroy) (object); } -- cgit