diff options
author | Ted Gould <ted@gould.cx> | 2010-08-12 09:25:35 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-08-12 09:25:35 -0500 |
commit | 2fd2bf207155ebeb4303569e39770c358282eb36 (patch) | |
tree | ac7d173aee9c1d6b3235aa32813636cd4e2bdfa1 /src | |
parent | 657571f91da4aa7ce96309a0fd234a2a30878140 (diff) | |
download | ayatana-indicator-messages-2fd2bf207155ebeb4303569e39770c358282eb36.tar.gz ayatana-indicator-messages-2fd2bf207155ebeb4303569e39770c358282eb36.tar.bz2 ayatana-indicator-messages-2fd2bf207155ebeb4303569e39770c358282eb36.zip |
Removing the parenthesis
Diffstat (limited to 'src')
-rw-r--r-- | src/im-menu-item.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/im-menu-item.c b/src/im-menu-item.c index 5841d81..b8b3709 100644 --- a/src/im-menu-item.c +++ b/src/im-menu-item.c @@ -348,7 +348,7 @@ count_cb (IndicateListener * listener, IndicateListenerServer * server, Indicate g_free(priv->count); } - priv->count = g_strdup_printf("(%s)", propertydata); + priv->count = g_strdup_printf("%s", propertydata); dbusmenu_menuitem_property_set(DBUSMENU_MENUITEM(self), INDICATOR_MENUITEM_PROP_RIGHT, priv->count); return; |