diff options
author | Michael Terry <michael.terry@canonical.com> | 2014-03-04 15:15:20 -0500 |
---|---|---|
committer | Michael Terry <michael.terry@canonical.com> | 2014-03-04 15:15:20 -0500 |
commit | 9d812a8e5f4e079e19135ceebfcef22bafdfb0a1 (patch) | |
tree | 2ba1468fdac373834efc7809d29a14f9b9917416 | |
parent | 754ce6a412d782a24ad763a481af412a615ad951 (diff) | |
download | ayatana-indicator-sound-9d812a8e5f4e079e19135ceebfcef22bafdfb0a1.tar.gz ayatana-indicator-sound-9d812a8e5f4e079e19135ceebfcef22bafdfb0a1.tar.bz2 ayatana-indicator-sound-9d812a8e5f4e079e19135ceebfcef22bafdfb0a1.zip |
Remove touch namespace for sound settings
-rw-r--r-- | src/volume-control.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/volume-control.vala b/src/volume-control.vala index f83d29d..c5c11ca 100644 --- a/src/volume-control.vala +++ b/src/volume-control.vala @@ -395,7 +395,7 @@ public class VolumeControl : Object var user_path_variant = yield accounts_proxy.call ("FindUserByName", new Variant ("(s)", username), DBusCallFlags.NONE, -1); string user_path; user_path_variant.get ("(o)", out user_path); - _user_proxy = yield DBusProxy.create_for_bus (BusType.SYSTEM, DBusProxyFlags.GET_INVALIDATED_PROPERTIES, null, "org.freedesktop.Accounts", user_path, "com.ubuntu.touch.AccountsService.Sound"); + _user_proxy = yield DBusProxy.create_for_bus (BusType.SYSTEM, DBusProxyFlags.GET_INVALIDATED_PROPERTIES, null, "org.freedesktop.Accounts", user_path, "com.ubuntu.AccountsService.Sound"); } catch (GLib.Error e) { warning ("unable to find Accounts path for user %s: %s", username, e.message); return; |