diff options
author | Lars Uebernickel <lars.uebernickel@canonical.com> | 2012-09-04 19:08:05 +0200 |
---|---|---|
committer | Lars Uebernickel <lars.uebernickel@canonical.com> | 2012-09-04 19:08:05 +0200 |
commit | 4f9764785ecaf4bb4b43211340eeb37741c09ccc (patch) | |
tree | 33abb228d8912321282af625139965a1f732e9f3 /src/ido-detail-label.c | |
parent | a83f13375bc72d0d96523295bd9e76ab75af9255 (diff) | |
download | ayatana-indicator-messages-4f9764785ecaf4bb4b43211340eeb37741c09ccc.tar.gz ayatana-indicator-messages-4f9764785ecaf4bb4b43211340eeb37741c09ccc.tar.bz2 ayatana-indicator-messages-4f9764785ecaf4bb4b43211340eeb37741c09ccc.zip |
ido-detail-label: chain up dispose and finalize calls
Diffstat (limited to 'src/ido-detail-label.c')
-rw-r--r-- | src/ido-detail-label.c | 4 |
1 files changed, 4 insertions, 0 deletions
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 |