aboutsummaryrefslogtreecommitdiff
path: root/src/im-phone-menu.c
diff options
context:
space:
mode:
authorLars Uebernickel <lars.uebernickel@canonical.com>2013-07-31 09:55:32 +0200
committerLars Uebernickel <lars.uebernickel@canonical.com>2013-07-31 09:55:32 +0200
commit769affeef08a04881a5a84aa5c2db2caedf70646 (patch)
treea39a73bce70a6ade53989956f00b7190127abc6b /src/im-phone-menu.c
parentd6b66195802d27b1f6e99fc544c14a0035dbaa6c (diff)
downloadayatana-indicator-messages-769affeef08a04881a5a84aa5c2db2caedf70646.tar.gz
ayatana-indicator-messages-769affeef08a04881a5a84aa5c2db2caedf70646.tar.bz2
ayatana-indicator-messages-769affeef08a04881a5a84aa5c2db2caedf70646.zip
Prefix action names with "indicator."
Diffstat (limited to 'src/im-phone-menu.c')
-rw-r--r--src/im-phone-menu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/im-phone-menu.c b/src/im-phone-menu.c
index 3d5f94d..907749f 100644
--- a/src/im-phone-menu.c
+++ b/src/im-phone-menu.c
@@ -72,7 +72,7 @@ im_phone_menu_update_toplevel (ImPhoneMenu *menu)
g_menu_append_section (menu->toplevel_menu, NULL, G_MENU_MODEL (menu->message_section));
g_menu_append_section (menu->toplevel_menu, NULL, G_MENU_MODEL (menu->source_section));
- item = g_menu_item_new ("Clear All", "remove-all");
+ item = g_menu_item_new ("Clear All", "indicator.remove-all");
g_menu_item_set_attribute (item, "x-canonical-type", "s", "com.canonical.indicator.button");
g_menu_append_item (menu->toplevel_menu, item);
@@ -173,7 +173,7 @@ im_phone_menu_add_message (ImPhoneMenu *menu,
g_return_if_fail (IM_IS_PHONE_MENU (menu));
g_return_if_fail (app_id);
- action_name = g_strconcat (app_id, ".msg.", id, NULL);
+ action_name = g_strconcat ("indicator.", app_id, ".msg.", id, NULL);
item = g_menu_item_new (title, action_name);
@@ -235,7 +235,7 @@ im_phone_menu_add_source (ImPhoneMenu *menu,
g_return_if_fail (IM_IS_PHONE_MENU (menu));
g_return_if_fail (app_id != NULL);
- action_name = g_strconcat (app_id, ".src.", id, NULL);
+ action_name = g_strconcat ("indicator.", app_id, ".src.", id, NULL);
item = g_menu_item_new (label, action_name);
g_menu_item_set_attribute (item, "x-canonical-type", "s", "com.canonical.indicator.messages.sourceitem");