From 06a9f9410791e2d7d682947e827ed7b22d0c60f9 Mon Sep 17 00:00:00 2001 From: Robert Tari Date: Mon, 17 May 2021 19:10:16 +0200 Subject: Use prefixed libayatana-common symbols --- src/service.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/service.c') diff --git a/src/service.c b/src/service.c index db1fad5..c93c4b6 100644 --- a/src/service.c +++ b/src/service.c @@ -401,7 +401,7 @@ count_batteries (GList * devices, int *total, int *inuse) static gboolean should_be_visible (IndicatorPowerService * self) { - if (!is_lomiri()) + if (!ayatana_common_utils_is_lomiri()) { return TRUE; } @@ -817,23 +817,23 @@ on_statistics_activated (GSimpleAction * a G_GNUC_UNUSED, GVariant * param, gpointer gself G_GNUC_UNUSED) { - if (is_mate()) + if (ayatana_common_utils_is_mate()) { char *cmd = g_strconcat ("mate-power-statistics", " --device ", g_variant_get_string (param, NULL), NULL); - execute_command (cmd); + ayatana_common_utils_execute_command (cmd); g_free (cmd); } - else if (is_budgie() || is_gnome() || is_unity()) + else if (ayatana_common_utils_is_budgie() || ayatana_common_utils_is_gnome() || ayatana_common_utils_is_unity()) { char *cmd = g_strconcat ("gnome-power-statistics", " --device ", g_variant_get_string (param, NULL), NULL); - execute_command (cmd); + ayatana_common_utils_execute_command (cmd); g_free (cmd); } else { - zenity_warning ("dialog-warning", + ayatana_common_utils_zenity_warning ("dialog-warning", _("Warning"), _("The Ayatana Power Indicator does not support evoking the\npower statistics application of your desktop environment, yet.\n\nPlease report this to the developers at:\nhttps://github.com/ArcticaProject/ayatana-indicator-power/issues")); } -- cgit v1.2.3