From 4f9764785ecaf4bb4b43211340eeb37741c09ccc Mon Sep 17 00:00:00 2001 From: Lars Uebernickel Date: Tue, 4 Sep 2012 19:08:05 +0200 Subject: ido-detail-label: chain up dispose and finalize calls --- src/ido-detail-label.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/ido-detail-label.c b/src/ido-detail-label.c index 5bfe884..2b996c9 100644 --- a/src/ido-detail-label.c +++ b/src/ido-detail-label.c @@ -84,6 +84,8 @@ ido_detail_label_finalize (GObject *object) IdoDetailLabelPrivate *priv = IDO_DETAIL_LABEL (object)->priv; g_free (priv->text); + + G_OBJECT_CLASS (ido_detail_label_parent_class)->finalize (object); } static void @@ -92,6 +94,8 @@ ido_detail_label_dispose (GObject *object) IdoDetailLabelPrivate *priv = IDO_DETAIL_LABEL (object)->priv; g_clear_object (&priv->layout); + + G_OBJECT_CLASS (ido_detail_label_parent_class)->dispose (object); } static void -- cgit v1.2.3