diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-01-16 10:04:32 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-01-16 10:18:03 +0100 |
commit | d2bcfdfe44568123b688c86b3a69e4a932641a33 (patch) | |
tree | a1941dee308054f8c0162fdec12a5b49d95d292a /tests/integration/utils | |
parent | 507a4208b75e3eae389d7b33d31f48550b921579 (diff) | |
download | ayatana-indicator-sound-d2bcfdfe44568123b688c86b3a69e4a932641a33.tar.gz ayatana-indicator-sound-d2bcfdfe44568123b688c86b3a69e4a932641a33.tar.bz2 ayatana-indicator-sound-d2bcfdfe44568123b688c86b3a69e4a932641a33.zip |
tests/integration/utils/dbus-pulse-volume.cpp: Yet another location where we need to check for HAS_UT_ACCTSERVICE_SOUND_SETTINGS.
Diffstat (limited to 'tests/integration/utils')
-rw-r--r-- | tests/integration/utils/dbus-pulse-volume.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/integration/utils/dbus-pulse-volume.cpp b/tests/integration/utils/dbus-pulse-volume.cpp index c8b6ae6..1912bf5 100644 --- a/tests/integration/utils/dbus-pulse-volume.cpp +++ b/tests/integration/utils/dbus-pulse-volume.cpp @@ -140,7 +140,11 @@ bool DBusPulseVolume::setVolume(QString const & role, double volume) { QDBusVariant dbusVar(QVariant::fromValue(volume)); QDBusReply<void> set_vol = accounts_interface_->call(QLatin1String("Set"), +#if HAS_UT_ACCTSERVICE_SOUND_SETTINGS QVariant::fromValue(QString("com.ubuntu.AccountsService.Sound")), +#else + QVariant::fromValue(QString("org.ayatana.AccountsService.Sound")), +#endif QVariant::fromValue(QString("Volume")), QVariant::fromValue(dbusVar)); if (!set_vol.isValid()) |