diff options
author | Michal Ratajsky <[email protected]> | 2014-08-12 05:19:40 +0200 |
---|---|---|
committer | Michal Ratajsky <[email protected]> | 2014-08-12 05:19:40 +0200 |
commit | 006ea9dd9baa9e879fc9ab47626e3e38d1aac634 (patch) | |
tree | 19b6872f32e62f256a0d2c10c3f38c3050c59bd2 /backends/null/null-backend.h | |
parent | d0e77b52d34c89d013787028c576264222b190b3 (diff) | |
download | libmatemixer-006ea9dd9baa9e879fc9ab47626e3e38d1aac634.tar.bz2 libmatemixer-006ea9dd9baa9e879fc9ab47626e3e38d1aac634.tar.xz |
Adapt Null module to API changes
Diffstat (limited to 'backends/null/null-backend.h')
-rw-r--r-- | backends/null/null-backend.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/backends/null/null-backend.h b/backends/null/null-backend.h index 505dd80..8499fe9 100644 --- a/backends/null/null-backend.h +++ b/backends/null/null-backend.h @@ -20,8 +20,8 @@ #include <glib.h> #include <glib-object.h> - -#include <libmatemixer/matemixer-backend-module.h> +#include <libmatemixer/matemixer.h> +#include <libmatemixer/matemixer-private.h> #define NULL_TYPE_BACKEND \ (null_backend_get_type ()) @@ -41,12 +41,12 @@ typedef struct _NullBackendClass NullBackendClass; struct _NullBackend { - GObject parent; + MateMixerBackend parent; }; struct _NullBackendClass { - GObjectClass parent_class; + MateMixerBackendClass parent_class; }; GType null_backend_get_type (void) G_GNUC_CONST; |