aboutsummaryrefslogtreecommitdiff
path: root/src/sound-service-dbus.c
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2010-02-10 12:45:23 +0000
committerConor Curran <conor.curran@canonical.com>2010-02-10 12:45:23 +0000
commitef8f7d725ef912219e1829d4c22db9abbc00df1a (patch)
tree7dbf8dd6a82beec89d49f8b147b076d97a84a878 /src/sound-service-dbus.c
parent4b22b241e13fbc1ca6e6d1bec21beda2941c3ced (diff)
downloadayatana-indicator-sound-ef8f7d725ef912219e1829d4c22db9abbc00df1a.tar.gz
ayatana-indicator-sound-ef8f7d725ef912219e1829d4c22db9abbc00df1a.tar.bz2
ayatana-indicator-sound-ef8f7d725ef912219e1829d4c22db9abbc00df1a.zip
tidy up plus unwanted feedback investigation
Diffstat (limited to 'src/sound-service-dbus.c')
-rw-r--r--src/sound-service-dbus.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sound-service-dbus.c b/src/sound-service-dbus.c
index 4a4a3c7..a4c6eda 100644
--- a/src/sound-service-dbus.c
+++ b/src/sound-service-dbus.c
@@ -33,6 +33,7 @@
// TODO - other should be static and moved from the header to here
static gboolean sound_service_dbus_get_sink_volume(SoundServiceDbus* service, gdouble* volume_percent_input, GError** gerror);
static gboolean sound_service_dbus_get_sink_mute(SoundServiceDbus* service, gboolean* mute_input, GError** gerror);
+static void sound_service_dbus_set_sink_volume(SoundServiceDbus* service, const guint volume_percent, GError** gerror);
#include "sound-service-server.h"
@@ -155,7 +156,7 @@ sound_service_dbus_finalize (GObject *object)
/**
DBUS Method Callbacks
**/
-void sound_service_dbus_set_sink_volume(SoundServiceDbus* service, const guint volume_percent, GError** gerror)
+static void sound_service_dbus_set_sink_volume(SoundServiceDbus* service, 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);
set_sink_volume(volume_percent);