aboutsummaryrefslogtreecommitdiff
path: root/src/indicator-sound.c
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2010-12-16 15:07:09 +0000
committerConor Curran <conor.curran@canonical.com>2010-12-16 15:07:09 +0000
commit3f7014afbcae2bb141b358ebf0b3cf036b08aa56 (patch)
tree4eef0601a9c7cb473481d162d8d29aba561ff895 /src/indicator-sound.c
parentf800967fcabf6a9d7e6223ff8d6591f042496588 (diff)
parent4c9ef773092664590d8e6e4fd46d31a35122ab6a (diff)
downloadayatana-indicator-sound-3f7014afbcae2bb141b358ebf0b3cf036b08aa56.tar.gz
ayatana-indicator-sound-3f7014afbcae2bb141b358ebf0b3cf036b08aa56.tar.bz2
ayatana-indicator-sound-3f7014afbcae2bb141b358ebf0b3cf036b08aa56.zip
registration process in place
Diffstat (limited to 'src/indicator-sound.c')
-rw-r--r--src/indicator-sound.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/indicator-sound.c b/src/indicator-sound.c
index d5cc54c..34f5ed9 100644
--- a/src/indicator-sound.c
+++ b/src/indicator-sound.c
@@ -561,7 +561,7 @@ fetch_sink_availability_from_dbus(IndicatorSound* self)
GError * error = NULL;
gboolean * available_input;
available_input = g_new0(gboolean, 1);
- org_ayatana_indicator_sound_get_sink_availability(sound_dbus_proxy, available_input, &error);
+ com_canonical_indicators_sound_get_sink_availability(sound_dbus_proxy, available_input, &error);
if (error != NULL) {
g_warning("Unable to fetch AVAILABILITY at indicator start up: %s", error->message);
g_error_free(error);
@@ -593,7 +593,7 @@ fetch_mute_value_from_dbus()
GError * error = NULL;
gboolean *mute_input;
mute_input = g_new0(gboolean, 1);
- org_ayatana_indicator_sound_get_sink_mute(sound_dbus_proxy, mute_input, &error);
+ com_canonical_indicators_sound_get_sink_mute(sound_dbus_proxy, mute_input, &error);
if (error != NULL) {
g_warning("Unable to fetch MUTE at indicator start up: %s", error->message);
g_error_free(error);