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-calendar-item.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'widgets/misc/e-calendar-item.c') diff --git a/widgets/misc/e-calendar-item.c b/widgets/misc/e-calendar-item.c index 80a8a5b655..2033f065f3 100644 --- a/widgets/misc/e-calendar-item.c +++ b/widgets/misc/e-calendar-item.c @@ -452,6 +452,9 @@ e_calendar_item_destroy (GtkObject *o) gdk_font_unref (calitem->old_font); if (calitem->old_week_number_font) gdk_font_unref (calitem->old_week_number_font); + + if (GTK_OBJECT_CLASS (parent_class)->destroy) + (* GTK_OBJECT_CLASS (parent_class)->destroy) (o); } -- cgit v1.2.3