aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-11-08 12:30:56 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-11-08 12:30:56 +0100
commit384e727b89627fdb381500be29fc3880493ed634 (patch)
tree20681a879bfcb17d8b8c20a46a0cb888ca659662 /src
parenteb8b3669b5e493ddd8ca4f18379a46d6c0ac57ca (diff)
downloadayatana-indicator-sound-384e727b89627fdb381500be29fc3880493ed634.tar.gz
ayatana-indicator-sound-384e727b89627fdb381500be29fc3880493ed634.tar.bz2
ayatana-indicator-sound-384e727b89627fdb381500be29fc3880493ed634.zip
Rename com.ubuntu.AccountsService.Sound
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt2
-rw-r--r--src/accounts-service-access.vala2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 761e87b..49d2715 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -23,7 +23,7 @@ else()
set (HAS_LOMIRI_ACCTSERVICE_SYSTEMSOUND_SETTINGS OFF)
endif()
-if(EXISTS "/usr/share/accountsservice/interfaces/com.ubuntu.AccountsService.Sound.xml")
+if(EXISTS "/usr/share/accountsservice/interfaces/com.lomiri.AccountsService.Sound.xml")
set (HAVE_UT_ACCTSERVICE_SOUND_SETTINGS ON)
set (VALA_DEFINE_ACCTSERVICE_SOUND_SETTINGS "--define=HAS_UT_ACCTSERVICE_SOUND_SETTINGS")
else()
diff --git a/src/accounts-service-access.vala b/src/accounts-service-access.vala
index 9973704..4287d86 100644
--- a/src/accounts-service-access.vala
+++ b/src/accounts-service-access.vala
@@ -144,7 +144,7 @@ public class AccountsServiceAccess : Object
if (user_path_variant.check_format_string ("(o)", true)) {
user_path_variant.get ("(o)", out user_path);
#if HAS_UT_ACCTSERVICE_SOUND_SETTINGS
- _user_proxy = yield new DBusProxy.for_bus (BusType.SYSTEM, DBusProxyFlags.GET_INVALIDATED_PROPERTIES, null, "org.freedesktop.Accounts", user_path, "com.ubuntu.AccountsService.Sound");
+ _user_proxy = yield new DBusProxy.for_bus (BusType.SYSTEM, DBusProxyFlags.GET_INVALIDATED_PROPERTIES, null, "org.freedesktop.Accounts", user_path, "com.lomiri.AccountsService.Sound");
#else
_user_proxy = yield new DBusProxy.for_bus (BusType.SYSTEM, DBusProxyFlags.GET_INVALIDATED_PROPERTIES, null, "org.freedesktop.Accounts", user_path, "org.ayatana.AccountsService.Sound");
#endif