aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-calendar-item.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@ximian.com>2001-08-09 14:22:12 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2001-08-09 14:22:12 +0800
commit5f4ca361a05c2f7489ec1e78cede43d1c7e450ed (patch)
treed04d1b27e2257ef2c8dfade9ecd00f552682183f /widgets/misc/e-calendar-item.c
parent70df9e5f0139016a592d911ae00167eeb900b307 (diff)
downloadgsoc2013-evolution-5f4ca361a05c2f7489ec1e78cede43d1c7e450ed.tar
gsoc2013-evolution-5f4ca361a05c2f7489ec1e78cede43d1c7e450ed.tar.gz
gsoc2013-evolution-5f4ca361a05c2f7489ec1e78cede43d1c7e450ed.tar.bz2
gsoc2013-evolution-5f4ca361a05c2f7489ec1e78cede43d1c7e450ed.tar.lz
gsoc2013-evolution-5f4ca361a05c2f7489ec1e78cede43d1c7e450ed.tar.xz
gsoc2013-evolution-5f4ca361a05c2f7489ec1e78cede43d1c7e450ed.tar.zst
gsoc2013-evolution-5f4ca361a05c2f7489ec1e78cede43d1c7e450ed.zip
Chain to the destroy handler in the parent class!
2001-08-09 Federico Mena Quintero <federico@ximian.com> * 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
Diffstat (limited to 'widgets/misc/e-calendar-item.c')
-rw-r--r--widgets/misc/e-calendar-item.c3
1 files changed, 3 insertions, 0 deletions
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);
}