diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-02-04 15:48:21 -0800 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-02-04 15:48:21 -0800 |
commit | 29b72e4825517b6183134dec06e392206621a734 (patch) | |
tree | 611de993ccff3cb95fb6271a5dbf5f1a135fcb1f /src | |
parent | f63890bd42b350f80c7a8d13adda9ffc58e18eb1 (diff) | |
download | ayatana-indicator-sound-29b72e4825517b6183134dec06e392206621a734.tar.gz ayatana-indicator-sound-29b72e4825517b6183134dec06e392206621a734.tar.bz2 ayatana-indicator-sound-29b72e4825517b6183134dec06e392206621a734.zip |
silly typo fixed
Diffstat (limited to 'src')
-rw-r--r-- | src/indicator-sound.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/indicator-sound.c b/src/indicator-sound.c index 5ca4df7..d1a2d82 100644 --- a/src/indicator-sound.c +++ b/src/indicator-sound.c @@ -89,7 +89,7 @@ static void change_speaker_image(gdouble volume_percent); // DBUS communication static DBusGProxy *sound_dbus_proxy = NULL; static void connection_changed (IndicatorServiceManager * sm, gboolean connected, gpointer userdata); -static void catch_signal(DBusGProxy * proxy, gint sink_index, gboolean value, gpointer userdata); +static void catch_signal_sink_input_while_muted(DBusGProxy * proxy, gint sink_index, gboolean value, gpointer userdata); static void indicator_sound_class_init (IndicatorSoundClass *klass) @@ -143,7 +143,7 @@ connection_changed (IndicatorServiceManager * sm, gboolean connected, gpointer u } g_debug("about to connect to the signals"); dbus_g_proxy_add_signal(sound_dbus_proxy, SIGNAL_SINK_INPUT_WHILE_MUTED, G_TYPE_INT, G_TYPE_BOOLEAN, G_TYPE_INVALID); - dbus_g_proxy_connect_signal(sound_dbus_proxy, SIGNAL_SINK_INPUT_WHILE_MUTED, G_CALLBACK(catch_signal), NULL, NULL); + dbus_g_proxy_connect_signal(sound_dbus_proxy, SIGNAL_SINK_INPUT_WHILE_MUTED, G_CALLBACK(catch_signal_sink_input_while_muted), NULL, NULL); } } else { |