diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-02-10 00:46:07 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-02-10 00:46:07 +0000 |
commit | b117e1edcf717da7d0d0cd890a85cc86366df931 (patch) | |
tree | a0d9250a187b729198cb6f378b08416d49f7c654 /src/sound-service-dbus.h | |
parent | 8d9276778375d9187a8f9839ff11e8aa5b186da0 (diff) | |
download | ayatana-indicator-sound-b117e1edcf717da7d0d0cd890a85cc86366df931.tar.gz ayatana-indicator-sound-b117e1edcf717da7d0d0cd890a85cc86366df931.tar.bz2 ayatana-indicator-sound-b117e1edcf717da7d0d0cd890a85cc86366df931.zip |
silly/nasty scaling bug caught
Diffstat (limited to 'src/sound-service-dbus.h')
-rw-r--r-- | src/sound-service-dbus.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sound-service-dbus.h b/src/sound-service-dbus.h index 08d4bbd..3103d98 100644 --- a/src/sound-service-dbus.h +++ b/src/sound-service-dbus.h @@ -52,12 +52,13 @@ struct _SoundServiceDbusClass { /* Signals -> outward messages to the DBUS and beyond*/ void (* sink_input_while_muted) (SoundServiceDbus *self, gint sink_index, gboolean is_muted, gpointer sound_data); void (* sink_volume_update) (SoundServiceDbus *self, gdouble sink_volume, gpointer sound_data); -}; +}; GType sound_service_dbus_get_type (void) G_GNUC_CONST; // Utility methods to get the messages across into the sound-service-dbus void sound_service_dbus_sink_input_while_muted (SoundServiceDbus* obj, gint sink_index, gboolean value); void sound_service_dbus_update_sink_volume(SoundServiceDbus* obj, gdouble sink_volume); +void sound_service_dbus_update_sink_mute(SoundServiceDbus* obj, gboolean sink_mute); // DBUS METHODS void sound_service_dbus_set_sink_volume(SoundServiceDbus* service, const guint volume_percent, GError** gerror); |