aboutsummaryrefslogtreecommitdiff
path: root/src/sound-service-dbus.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound-service-dbus.c')
-rw-r--r--src/sound-service-dbus.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/sound-service-dbus.c b/src/sound-service-dbus.c
index ad4ac71..1e7b6d5 100644
--- a/src/sound-service-dbus.c
+++ b/src/sound-service-dbus.c
@@ -312,20 +312,19 @@ void sound_service_dbus_update_sound_state (SoundServiceDbus* self,
GError * error = NULL;
+ g_debug ("emitting signal with value %i", (int)update);
g_dbus_connection_emit_signal( priv->connection,
NULL,
INDICATOR_SOUND_MENU_DBUS_OBJECT_PATH,
INDICATOR_SOUND_DBUS_INTERFACE,
INDICATOR_SOUND_SIGNAL_SOUND_STATE_UPDATE,
- v_output,
- &error );
+ v_output,
+ &error );
if (error != NULL) {
g_error("Unable to emit signal 'sinkinputwhilemuted' because : %s", error->message);
g_error_free(error);
return;
}
-
-
}
static SoundState sound_service_dbus_get_state_from_volume (SoundServiceDbus* self)