diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-02-01 11:41:05 -0800 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-02-01 11:41:05 -0800 |
commit | a4608dd1c365f426436ab1ceeca1b9108a72d330 (patch) | |
tree | db88a6f8c5a974de717651731ed745bc57b93c23 /src/sound-service-dbus.c | |
parent | 329c77deb1bcbc85d24d68197405a6de8083b290 (diff) | |
download | ayatana-indicator-sound-a4608dd1c365f426436ab1ceeca1b9108a72d330.tar.gz ayatana-indicator-sound-a4608dd1c365f426436ab1ceeca1b9108a72d330.tar.bz2 ayatana-indicator-sound-a4608dd1c365f426436ab1ceeca1b9108a72d330.zip |
tidy up some more plus working slider
Diffstat (limited to 'src/sound-service-dbus.c')
-rw-r--r-- | src/sound-service-dbus.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/sound-service-dbus.c b/src/sound-service-dbus.c index 286af32..58030cc 100644 --- a/src/sound-service-dbus.c +++ b/src/sound-service-dbus.c @@ -86,9 +86,10 @@ sound_service_dbus_class_init (SoundServiceDbusClass *klass) /** DBUS Method Callbacks **/ -gboolean sound_service_dbus_set_sink_volume(SoundServiceDbus* service, const guint volume_percent, GError** gerror) +gboolean sound_service_dbus_set_sink_volume(SoundServiceDbus* service, const guint sink_index, const guint volume_percent, GError** gerror) { - g_debug("in the set sink volume method in the sound service dbus!, with volume_percent of %i", volume_percent); + g_debug("in the set sink volume method in the sound service dbus!, with volume_percent of %i on sink %i", volume_percent, sink_index); + /* if (!IS_SOUND_SERVICE_DBUS(service)) {*/ /* g_warning("NO BAD EVIL!");*/ /* return FALSE;*/ |