diff options
author | Michal Ratajsky <[email protected]> | 2014-06-20 00:12:40 +0200 |
---|---|---|
committer | Michal Ratajsky <[email protected]> | 2014-06-20 00:12:40 +0200 |
commit | 6be9a89195e0d3bf8408cea661f22cb97b638f24 (patch) | |
tree | 745cfec763facc62b6c3bc51cd246e5cad4d9f68 /backends/pulse/pulse-backend.h | |
parent | a2290d5e13ccee88fd9ae66a3895eb4da646f81f (diff) | |
download | libmatemixer-6be9a89195e0d3bf8408cea661f22cb97b638f24.tar.bz2 libmatemixer-6be9a89195e0d3bf8408cea661f22cb97b638f24.tar.xz |
Pulse and API updates, fixes
Diffstat (limited to 'backends/pulse/pulse-backend.h')
-rw-r--r-- | backends/pulse/pulse-backend.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/backends/pulse/pulse-backend.h b/backends/pulse/pulse-backend.h index 64be9b7..813d359 100644 --- a/backends/pulse/pulse-backend.h +++ b/backends/pulse/pulse-backend.h @@ -21,6 +21,8 @@ #include <glib.h> #include <glib-object.h> +#include <libmatemixer/matemixer-backend.h> + #define PULSE_TYPE_BACKEND \ (pulse_backend_get_type ()) #define PULSE_BACKEND(o) \ @@ -30,7 +32,7 @@ #define PULSE_BACKEND_CLASS(k) \ (G_TYPE_CHECK_CLASS_CAST ((k), PULSE_TYPE_BACKEND, PulseBackendClass)) #define PULSE_IS_BACKEND_CLASS(k) \ - (G_TYPE_CLASS_CHECK_CLASS_TYPE ((k), PULSE_TYPE_BACKEND)) + (G_TYPE_CHECK_CLASS_TYPE ((k), PULSE_TYPE_BACKEND)) #define PULSE_BACKEND_GET_CLASS(o) \ (G_TYPE_INSTANCE_GET_CLASS ((o), PULSE_TYPE_BACKEND, PulseBackendClass)) @@ -40,15 +42,15 @@ typedef struct _PulseBackendPrivate PulseBackendPrivate; struct _PulseBackend { + GObject parent; + /*< private >*/ - GObject parent; - PulseBackendPrivate *priv; + PulseBackendPrivate *priv; }; struct _PulseBackendClass { - /*< private >*/ - GObjectClass parent; + GObjectClass parent_class; }; GType pulse_backend_get_type (void) G_GNUC_CONST; |