diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2010-01-08 13:55:28 -0500 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2010-01-08 13:55:28 -0500 |
commit | 27152b308f81f820833391ef228c4499c73c2183 (patch) | |
tree | 06dfb0776e35b56b3d2ec8d682723722d506b437 /src/messages-service.c | |
parent | 1fe4c86ce7dd4f206c1b954919a262740cbf76ef (diff) | |
parent | d39cc3106f19eb906552e137824aabb4d648c2a1 (diff) | |
download | ayatana-indicator-messages-27152b308f81f820833391ef228c4499c73c2183.tar.gz ayatana-indicator-messages-27152b308f81f820833391ef228c4499c73c2183.tar.bz2 ayatana-indicator-messages-27152b308f81f820833391ef228c4499c73c2183.zip |
* Upstream release 0.3.0
- Disabling static builds.
- Porting to libindicator 0.3.0
- Adding translator comments from hours and minutes strings.
(LP: #456437)
- Upgrading to dbusmenu 0.2.0
* debian/control: Updating dbusmenu dependency to 0.2.0
* debian/control: Increasing libindicator-dev dependency to
0.3.0
Diffstat (limited to 'src/messages-service.c')
-rw-r--r-- | src/messages-service.c | 4 |
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); |