aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-08-26 20:26:13 -0500
committerTed Gould <ted@canonical.com>2009-08-26 20:26:13 -0500
commitd08632f2c21df15c8edf292910d63f144bb4a7a3 (patch)
tree0a06a545a0c0aed0273b6f4b1c6beb6f3c77a028
parent11f25319d0a2b822bb76bd5c0fad5bf4847d259c (diff)
downloadayatana-indicator-messages-d08632f2c21df15c8edf292910d63f144bb4a7a3.tar.gz
ayatana-indicator-messages-d08632f2c21df15c8edf292910d63f144bb4a7a3.tar.bz2
ayatana-indicator-messages-d08632f2c21df15c8edf292910d63f144bb4a7a3.zip
Use that handy get_description function that we just merged in. Heh, wonder why we did that...
-rw-r--r--src/launcher-menu-item.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/launcher-menu-item.c b/src/launcher-menu-item.c
index 07598d7..6678cc5 100644
--- a/src/launcher-menu-item.c
+++ b/src/launcher-menu-item.c
@@ -133,7 +133,7 @@ launcher_menu_item_new (const gchar * desktop_file)
g_debug("\tName: %s", launcher_menu_item_get_name(self));
dbusmenu_menuitem_property_set(DBUSMENU_MENUITEM(self), "type", LAUNCHER_MENUITEM_TYPE);
dbusmenu_menuitem_property_set(DBUSMENU_MENUITEM(self), LAUNCHER_MENUITEM_PROP_APP_NAME, launcher_menu_item_get_name(self));
- // dbusmenu_menuitem_property_set(DBUSMENU_MENUITEM(self), LAUNCHER_MENUITEM_PROP_APP_DESC, launcher_menu_item_get_name(self));
+ dbusmenu_menuitem_property_set(DBUSMENU_MENUITEM(self), LAUNCHER_MENUITEM_PROP_APP_DESC, launcher_menu_item_get_description(self));
g_signal_connect(G_OBJECT(self), DBUSMENU_MENUITEM_SIGNAL_ITEM_ACTIVATED, G_CALLBACK(activate_cb), NULL);