diff options
author | Martin Pitt <martin.pitt@canonical.com> | 2009-04-14 11:31:52 +0200 |
---|---|---|
committer | Martin Pitt <martin.pitt@canonical.com> | 2009-04-14 11:31:52 +0200 |
commit | 426f9db9a26c74289001c6866db020d545bb90e4 (patch) | |
tree | 7ba5bce32f83e9719de5d492e6fa4f46fade2375 | |
parent | f218267246b3068690693894fefe2763a4552e1a (diff) | |
parent | 220d088c20d7b7246ad56dfe14121c740a9e9d9e (diff) | |
download | ayatana-indicator-messages-426f9db9a26c74289001c6866db020d545bb90e4.tar.gz ayatana-indicator-messages-426f9db9a26c74289001c6866db020d545bb90e4.tar.bz2 ayatana-indicator-messages-426f9db9a26c74289001c6866db020d545bb90e4.zip |
* New upstream version
* Patch from Cody Russell to fix LP: #359018 by correctly implementing
the finalize functions.
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | src/app-menu-item.c | 4 |
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; } |