aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-04-13 11:25:42 -0500
committerTed Gould <ted@canonical.com>2009-04-13 11:25:42 -0500
commit220d088c20d7b7246ad56dfe14121c740a9e9d9e (patch)
tree7ba5bce32f83e9719de5d492e6fa4f46fade2375
parent1b6bd5594a44af4bfb336ae742b8c3036bb1bb4d (diff)
parentd84f15b0358c213ceba4beebfe9777cc37db8b00 (diff)
downloadayatana-indicator-messages-220d088c20d7b7246ad56dfe14121c740a9e9d9e.tar.gz
ayatana-indicator-messages-220d088c20d7b7246ad56dfe14121c740a9e9d9e.tar.bz2
ayatana-indicator-messages-220d088c20d7b7246ad56dfe14121c740a9e9d9e.zip
* New upstream version
* Patch from Cody Russell to fix LP: #359018 by correctly implementing the finalize functions.
-rw-r--r--configure.ac2
-rw-r--r--debian/changelog8
-rw-r--r--src/app-menu-item.c4
3 files changed, 11 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index e8cd9be..9363693 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,7 +4,7 @@ AC_INIT(src/indicator-messages.c)
AC_PREREQ(2.53)
AM_CONFIG_HEADER(config.h)
-AM_INIT_AUTOMAKE(indicator-messages, 0.1.5)
+AM_INIT_AUTOMAKE(indicator-messages, 0.1.6)
AM_MAINTAINER_MODE
diff --git a/debian/changelog b/debian/changelog
index 7e80558..19fda6e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+indicator-messages (0.1.6-0ubuntu1) UNRELEASED; urgency=low
+
+ * New upstream version
+ * Patch from Cody Russell to fix LP: #359018 by correctly implementing
+ the finalize functions.
+
+ -- Ted Gould <ted@ubuntu.com> Mon, 13 Apr 2009 11:24:43 -0500
+
indicator-messages (0.1.5-0ubuntu1) jaunty; urgency=low
* New upstream version
diff --git a/src/app-menu-item.c b/src/app-menu-item.c
index f6afa02..c769d47 100644
--- a/src/app-menu-item.c
+++ b/src/app-menu-item.c
@@ -125,14 +125,14 @@ app_menu_item_dispose (GObject *object)
static void
app_menu_item_finalize (GObject *object)
{
- G_OBJECT_CLASS (app_menu_item_parent_class)->finalize (object);
-
AppMenuItem * self = APP_MENU_ITEM(object);
AppMenuItemPrivate * priv = APP_MENU_ITEM_GET_PRIVATE(self);
g_signal_handlers_disconnect_by_func(G_OBJECT(priv->listener), G_CALLBACK(indicator_added_cb), self);
g_signal_handlers_disconnect_by_func(G_OBJECT(priv->listener), G_CALLBACK(indicator_removed_cb), self);
+ G_OBJECT_CLASS (app_menu_item_parent_class)->finalize (object);
+
return;
}