summaryrefslogtreecommitdiff
path: root/libmatemixer/matemixer-profile.h
diff options
context:
space:
mode:
Diffstat (limited to 'libmatemixer/matemixer-profile.h')
-rw-r--r--libmatemixer/matemixer-profile.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/libmatemixer/matemixer-profile.h b/libmatemixer/matemixer-profile.h
index 7be140b..4ce0d1a 100644
--- a/libmatemixer/matemixer-profile.h
+++ b/libmatemixer/matemixer-profile.h
@@ -42,25 +42,25 @@ typedef struct _MateMixerProfilePrivate MateMixerProfilePrivate;
struct _MateMixerProfile
{
- GObject parent;
-
- MateMixerProfilePrivate *priv;
+ /*< private >*/
+ GObject parent;
+ MateMixerProfilePrivate *priv;
};
struct _MateMixerProfileClass
{
- GObjectClass parent;
+ /*< private >*/
+ GObjectClass parent;
};
-GType mate_mixer_profile_get_type (void) G_GNUC_CONST;
-
+GType mate_mixer_profile_get_type (void) G_GNUC_CONST;
MateMixerProfile *mate_mixer_profile_new (const gchar *name,
const gchar *description,
- guint32 priority);
+ gulong priority);
const gchar * mate_mixer_profile_get_name (MateMixerProfile *profile);
const gchar * mate_mixer_profile_get_description (MateMixerProfile *profile);
-guint32 mate_mixer_profile_get_priority (MateMixerProfile *profile);
+gulong mate_mixer_profile_get_priority (MateMixerProfile *profile);
G_END_DECLS