diff options
author | Michal Ratajsky <[email protected]> | 2014-08-18 20:49:17 +0200 |
---|---|---|
committer | Michal Ratajsky <[email protected]> | 2014-08-18 20:49:17 +0200 |
commit | 5f20ab328add9442082277a57c23273a3a2125ed (patch) | |
tree | fb458ba63f25db35de6b5a9c9acf0f967020107f /backends/pulse/pulse-backend.h | |
parent | 94d24482d8b1013947c0e2dac7330180b6ae02f6 (diff) | |
download | libmatemixer-5f20ab328add9442082277a57c23273a3a2125ed.tar.bz2 libmatemixer-5f20ab328add9442082277a57c23273a3a2125ed.tar.xz |
Global update
Diffstat (limited to 'backends/pulse/pulse-backend.h')
-rw-r--r-- | backends/pulse/pulse-backend.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/backends/pulse/pulse-backend.h b/backends/pulse/pulse-backend.h index bd1face..2c4b8a8 100644 --- a/backends/pulse/pulse-backend.h +++ b/backends/pulse/pulse-backend.h @@ -20,8 +20,10 @@ #include <glib.h> #include <glib-object.h> +#include <libmatemixer/matemixer.h> +#include <libmatemixer/matemixer-private.h> -#include <libmatemixer/matemixer-backend-module.h> +#include "pulse-types.h" #define PULSE_TYPE_BACKEND \ (pulse_backend_get_type ()) @@ -36,13 +38,12 @@ #define PULSE_BACKEND_GET_CLASS(o) \ (G_TYPE_INSTANCE_GET_CLASS ((o), PULSE_TYPE_BACKEND, PulseBackendClass)) -typedef struct _PulseBackend PulseBackend; typedef struct _PulseBackendClass PulseBackendClass; typedef struct _PulseBackendPrivate PulseBackendPrivate; struct _PulseBackend { - GObject parent; + MateMixerBackend parent; /*< private >*/ PulseBackendPrivate *priv; @@ -50,7 +51,7 @@ struct _PulseBackend struct _PulseBackendClass { - GObjectClass parent_class; + MateMixerBackendClass parent_class; }; GType pulse_backend_get_type (void) G_GNUC_CONST; |