diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-01-25 19:28:29 -0600 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-01-25 19:28:29 -0600 |
commit | d20e8f85ca28589e486fd395bd2071d63b2069ae (patch) | |
tree | a1ff74cc4b631aeb645c47f851047aa20cda1685 /src/sound-service-dbus.c | |
parent | 9643b10b825c13fe46d211b6ab1cd2230392f299 (diff) | |
download | ayatana-indicator-sound-d20e8f85ca28589e486fd395bd2071d63b2069ae.tar.gz ayatana-indicator-sound-d20e8f85ca28589e486fd395bd2071d63b2069ae.tar.bz2 ayatana-indicator-sound-d20e8f85ca28589e486fd395bd2071d63b2069ae.zip |
tidy up
Diffstat (limited to 'src/sound-service-dbus.c')
-rw-r--r-- | src/sound-service-dbus.c | 7 |
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) |