diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-05-15 16:45:12 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-05-15 16:45:12 +0200 |
commit | 2a7ebff68f86a634c674076e7bc759156db6b94c (patch) | |
tree | 31e4dbbccbb9378689dd60e4489b23fc10aa663f /src/service.c | |
parent | b4468d6c0f32066a59706353d735a3f434676975 (diff) | |
download | ayatana-indicator-power-2a7ebff68f86a634c674076e7bc759156db6b94c.tar.gz ayatana-indicator-power-2a7ebff68f86a634c674076e7bc759156db6b94c.tar.bz2 ayatana-indicator-power-2a7ebff68f86a634c674076e7bc759156db6b94c.zip |
One step back... Mimick Canonical's API. Use their namespace for item attributes.
Diffstat (limited to 'src/service.c')
-rw-r--r-- | src/service.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/service.c b/src/service.c index 5072765..8139ee7 100644 --- a/src/service.c +++ b/src/service.c @@ -510,7 +510,7 @@ append_device_to_menu (GMenu * menu, const IndicatorPowerDevice * device, int pr item = g_menu_item_new (label, NULL); g_free (label); - g_menu_item_set_attribute (item, "x-ayatana-type", "s", "org.ayatana.indicator.basic"); + g_menu_item_set_attribute (item, "x-canonical-type", "s", "com.canonical.indicator.basic"); if ((icon = indicator_power_device_get_gicon (device))) { @@ -563,7 +563,7 @@ create_phone_devices_section (IndicatorPowerService * self G_GNUC_UNUSED) menu = g_menu_new (); item = g_menu_item_new (_("Charge level"), "indicator.battery-level"); - g_menu_item_set_attribute (item, "x-ayatana-type", "s", "org.ayatana.indicator.progress"); + g_menu_item_set_attribute (item, "x-canonical-type", "s", "com.canonical.indicator.progress"); g_menu_append_item (menu, item); g_object_unref (item); @@ -584,7 +584,7 @@ create_brightness_menu_item(void) GMenuItem * item; item = g_menu_item_new(NULL, "indicator.brightness"); - g_menu_item_set_attribute(item, "x-ayatana-type", "s", "org.ayatana.unity.slider"); + g_menu_item_set_attribute(item, "x-canonical-type", "s", "com.canonical.unity.slider"); g_menu_item_set_attribute(item, "min-value", "d", 0.0); g_menu_item_set_attribute(item, "max-value", "d", 1.0); @@ -665,7 +665,7 @@ create_phone_settings_section(IndicatorPowerService * self) if (ab_supported) { item = g_menu_item_new(_("Adjust brightness automatically"), "indicator.auto-brightness"); - g_menu_item_set_attribute(item, "x-ayatana-type", "s", "org.ayatana.indicator.switch"); + g_menu_item_set_attribute(item, "x-canonical-type", "s", "com.canonical.indicator.switch"); g_menu_append_item(section, item); g_object_unref(item); } @@ -773,8 +773,8 @@ create_menu (IndicatorPowerService * self, int profile) /* add submenu to the header */ header = g_menu_item_new (NULL, "indicator._header"); - g_menu_item_set_attribute (header, "x-ayatana-type", - "s", "org.ayatana.indicator.root"); + g_menu_item_set_attribute (header, "x-canonical-type", + "s", "com.canonical.indicator.root"); g_menu_item_set_submenu (header, G_MENU_MODEL (submenu)); g_object_unref (submenu); |