diff options
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | debian/changelog | 14 | ||||
-rw-r--r-- | src/indicator-messages.c | 2 |
4 files changed, 10 insertions, 10 deletions
@@ -2843,7 +2843,7 @@ fi # Define the identity of the package. PACKAGE=indicator-messages - VERSION=0.3.10 + VERSION=0.3.11 cat >>confdefs.h <<_ACEOF diff --git a/configure.ac b/configure.ac index ab230fd..f41aff0 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.3.10) +AM_INIT_AUTOMAKE(indicator-messages, 0.3.11) AM_MAINTAINER_MODE diff --git a/debian/changelog b/debian/changelog index 181608d..4a45eb0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +indicator-messages (0.3.11-0ubuntu1) maverick; urgency=low + + * New upstream release. + * Fixing triangles by passing data to callback (LP: #623453) + + -- Ted Gould <ted@ubuntu.com> Thu, 09 Sep 2010 13:24:13 -0500 + indicator-messages (0.3.10-0ubuntu1) maverick; urgency=low * New upstream release. @@ -13,13 +20,6 @@ indicator-messages (0.3.9-0ubuntu1) maverick; urgency=low -- Ted Gould <ted@ubuntu.com> Thu, 12 Aug 2010 13:10:10 -0500 -indicator-messages (0.3.9-0ubuntu1~ppa1) maverick; urgency=low - - * New upstream release. - * Remove parens from counts - - -- Ted Gould <ted@ubuntu.com> Thu, 12 Aug 2010 13:10:10 -0500 - indicator-messages (0.3.8-0ubuntu1) maverick; urgency=low * New upstream release. diff --git a/src/indicator-messages.c b/src/indicator-messages.c index 302b9e5..b29edce 100644 --- a/src/indicator-messages.c +++ b/src/indicator-messages.c @@ -453,7 +453,7 @@ new_application_item (DbusmenuMenuitem * newitem, DbusmenuMenuitem * parent, Dbu /* Make sure we can handle the label changing */ g_signal_connect(G_OBJECT(newitem), DBUSMENU_MENUITEM_SIGNAL_PROPERTY_CHANGED, G_CALLBACK(application_prop_change_cb), label); g_signal_connect(G_OBJECT(newitem), DBUSMENU_MENUITEM_SIGNAL_PROPERTY_CHANGED, G_CALLBACK(application_icon_change_cb), icon); - g_signal_connect_after(G_OBJECT (gmi), "expose_event", G_CALLBACK (application_triangle_draw_cb), NULL); + g_signal_connect_after(G_OBJECT (gmi), "expose_event", G_CALLBACK (application_triangle_draw_cb), newitem); return TRUE; } |