aboutsummaryrefslogtreecommitdiff
path: root/src/messages-service.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2009-12-18 20:58:02 -0600
committerTed Gould <ted@gould.cx>2009-12-18 20:58:02 -0600
commita9d46c6be68d2ff4f8cab6ff1d9027ac5a48045a (patch)
tree7c60c4bacc9ed1d0da32b23f884cf88a42025371 /src/messages-service.c
parent38a59145e520cc7758af733fee3855705be056d4 (diff)
parent2e661e35575a77338acb08e6d3707c978d6e1b08 (diff)
downloadayatana-indicator-messages-a9d46c6be68d2ff4f8cab6ff1d9027ac5a48045a.tar.gz
ayatana-indicator-messages-a9d46c6be68d2ff4f8cab6ff1d9027ac5a48045a.tar.bz2
ayatana-indicator-messages-a9d46c6be68d2ff4f8cab6ff1d9027ac5a48045a.zip
Upgrading to dbusmenu 0.2.0
Diffstat (limited to 'src/messages-service.c')
-rw-r--r--src/messages-service.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/messages-service.c b/src/messages-service.c
index f5681b7..f1e1b0d 100644
--- a/src/messages-service.c
+++ b/src/messages-service.c
@@ -488,7 +488,7 @@ server_added (IndicateListener * listener, IndicateListenerServer * server, gcha
/* Build a separator */
sl_item->separator = dbusmenu_menuitem_new();
- dbusmenu_menuitem_property_set(sl_item->separator, "type", DBUSMENU_CLIENT_TYPES_SEPARATOR);
+ dbusmenu_menuitem_property_set(sl_item->separator, DBUSMENU_MENUITEM_PROP_TYPE, DBUSMENU_CLIENT_TYPES_SEPARATOR);
/* Incase we got an indicator first */
GList * alreadythere = g_list_find_custom(serverList, sl_item, serverList_equal);
@@ -1139,7 +1139,7 @@ build_launcher (gpointer data)
/* Build a separator */
ll->separator = dbusmenu_menuitem_new();
- dbusmenu_menuitem_property_set(ll->separator, "type", DBUSMENU_CLIENT_TYPES_SEPARATOR);
+ dbusmenu_menuitem_property_set(ll->separator, DBUSMENU_MENUITEM_PROP_TYPE, DBUSMENU_CLIENT_TYPES_SEPARATOR);
/* Add it to the list */
launcherList = g_list_insert_sorted(launcherList, ll, launcherList_sort);