diff options
author | Ted Gould <ted@canonical.com> | 2009-08-26 16:47:55 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-08-26 16:47:55 -0500 |
commit | 9449d49b38b2dfe2f9a0d90378877a801b6def03 (patch) | |
tree | c8120cccb224cfca42d8adfd7a19d8debddd50ae /src/app-menu-item.c | |
parent | 482016974e086dbd2da6d5b093b4b80322cab4c8 (diff) | |
download | ayatana-indicator-messages-9449d49b38b2dfe2f9a0d90378877a801b6def03.tar.gz ayatana-indicator-messages-9449d49b38b2dfe2f9a0d90378877a801b6def03.tar.bz2 ayatana-indicator-messages-9449d49b38b2dfe2f9a0d90378877a801b6def03.zip |
Replacing the prop strings with defines
Diffstat (limited to 'src/app-menu-item.c')
-rw-r--r-- | src/app-menu-item.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app-menu-item.c b/src/app-menu-item.c index 3a2c795..feb780d 100644 --- a/src/app-menu-item.c +++ b/src/app-menu-item.c @@ -218,10 +218,10 @@ update_label (AppMenuItem * self) /* TRANSLATORS: This is the name of the program and the number of indicators. So it would read something like "Mail Client (5)" */ gchar * label = g_strdup_printf(_("%s (%d)"), app_menu_item_get_name(self), priv->unreadcount); - dbusmenu_menuitem_property_set(DBUSMENU_MENUITEM(self), "label", label); + dbusmenu_menuitem_property_set(DBUSMENU_MENUITEM(self), DBUSMENU_MENUITEM_PROP_LABEL, label); g_free(label); } else { - dbusmenu_menuitem_property_set(DBUSMENU_MENUITEM(self), "label", app_menu_item_get_name(self)); + dbusmenu_menuitem_property_set(DBUSMENU_MENUITEM(self), DBUSMENU_MENUITEM_PROP_LABEL, app_menu_item_get_name(self)); } return; |