diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-02-10 12:45:23 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-02-10 12:45:23 +0000 |
commit | ef8f7d725ef912219e1829d4c22db9abbc00df1a (patch) | |
tree | 7dbf8dd6a82beec89d49f8b147b076d97a84a878 /src/sound-service-dbus.h | |
parent | 4b22b241e13fbc1ca6e6d1bec21beda2941c3ced (diff) | |
download | ayatana-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.h')
-rw-r--r-- | src/sound-service-dbus.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/sound-service-dbus.h b/src/sound-service-dbus.h index 223f766..ef0d7dd 100644 --- a/src/sound-service-dbus.h +++ b/src/sound-service-dbus.h @@ -51,19 +51,16 @@ struct _SoundServiceDbusClass { GObjectClass parent_class; /* Signals -> outward messages to the DBUS and beyond*/ // TODO - ARE THESE NECESSARY ? - void (* sink_input_while_muted) (SoundServiceDbus *self, gboolean block_value, gpointer sound_data); - void (* sink_volume_update) (SoundServiceDbus *self, gdouble sink_volume, gpointer sound_data); + //void (* sink_input_while_muted) (SoundServiceDbus *self, gboolean block_value, 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 +// Utility methods to get the SIGNAL messages across into the sound-service-dbus void sound_service_dbus_sink_input_while_muted (SoundServiceDbus* obj, gboolean block_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); - G_END_DECLS #endif |