diff options
author | Michal Ratajsky <[email protected]> | 2014-06-07 02:04:55 +0200 |
---|---|---|
committer | Michal Ratajsky <[email protected]> | 2014-06-07 02:04:55 +0200 |
commit | 7cf09a2b40a507caf2bea0c54af00da84a8f88af (patch) | |
tree | 2c70c82c8c2aa2fdd7aace28c7bff2dbfb4a75a9 /libmatemixer/matemixer-device.h | |
parent | d2c3a4be634018a2b63f4c80a26f9024a0d3de47 (diff) | |
download | libmatemixer-7cf09a2b40a507caf2bea0c54af00da84a8f88af.tar.bz2 libmatemixer-7cf09a2b40a507caf2bea0c54af00da84a8f88af.tar.xz |
Fix properties
Diffstat (limited to 'libmatemixer/matemixer-device.h')
-rw-r--r-- | libmatemixer/matemixer-device.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmatemixer/matemixer-device.h b/libmatemixer/matemixer-device.h index 89c0187..3b25313 100644 --- a/libmatemixer/matemixer-device.h +++ b/libmatemixer/matemixer-device.h @@ -49,7 +49,7 @@ struct _MateMixerDeviceInterface const GList *(*list_profiles) (MateMixerDevice *device); MateMixerProfile *(*get_active_profile) (MateMixerDevice *device); gboolean (*set_active_profile) (MateMixerDevice *device, - const gchar *name); + const gchar *profile_name); }; GType mate_mixer_device_get_type (void) G_GNUC_CONST; @@ -62,7 +62,7 @@ const GList * mate_mixer_device_list_ports (MateMixerDevice *device) const GList * mate_mixer_device_list_profiles (MateMixerDevice *device); MateMixerProfile *mate_mixer_device_get_active_profile (MateMixerDevice *device); gboolean mate_mixer_device_set_active_profile (MateMixerDevice *device, - const gchar *name); + const gchar *profile_name); G_END_DECLS |