summaryrefslogtreecommitdiff
path: root/libmatemixer
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2019-10-29 11:24:41 +0100
committerlukefromdc <[email protected]>2019-11-01 23:31:49 +0000
commit13b9341a115751b518d1d106820624f8b17ecee2 (patch)
tree4596cfba3c1023f25d4017607039139ab5e69c95 /libmatemixer
parenta2b696a815934bc36af8b67bfd7cbd1550bae5eb (diff)
downloadlibmatemixer-13b9341a115751b518d1d106820624f8b17ecee2.tar.bz2
libmatemixer-13b9341a115751b518d1d106820624f8b17ecee2.tar.xz
avoid redundant redeclarations
Diffstat (limited to 'libmatemixer')
-rw-r--r--libmatemixer/matemixer-backend-module.c3
-rw-r--r--libmatemixer/matemixer-backend.c4
-rw-r--r--libmatemixer/matemixer-context.c3
-rw-r--r--libmatemixer/matemixer-device-switch.c4
-rw-r--r--libmatemixer/matemixer-device.c3
-rw-r--r--libmatemixer/matemixer-stored-control.c4
-rw-r--r--libmatemixer/matemixer-stream-control.c3
-rw-r--r--libmatemixer/matemixer-stream-switch.c4
-rw-r--r--libmatemixer/matemixer-stream-toggle.c3
-rw-r--r--libmatemixer/matemixer-stream.c3
-rw-r--r--libmatemixer/matemixer-switch-option.c3
-rw-r--r--libmatemixer/matemixer-switch.c3
12 files changed, 0 insertions, 40 deletions
diff --git a/libmatemixer/matemixer-backend-module.c b/libmatemixer/matemixer-backend-module.c
index b01b33f..ce88f6d 100644
--- a/libmatemixer/matemixer-backend-module.c
+++ b/libmatemixer/matemixer-backend-module.c
@@ -41,8 +41,6 @@ enum {
PROP_PATH
};
-static void mate_mixer_backend_module_class_init (MateMixerBackendModuleClass *klass);
-
static void mate_mixer_backend_module_get_property (GObject *object,
guint param_id,
GValue *value,
@@ -52,7 +50,6 @@ static void mate_mixer_backend_module_set_property (GObject
const GValue *value,
GParamSpec *pspec);
-static void mate_mixer_backend_module_init (MateMixerBackendModule *module);
static void mate_mixer_backend_module_dispose (GObject *object);
static void mate_mixer_backend_module_finalize (GObject *object);
diff --git a/libmatemixer/matemixer-backend.c b/libmatemixer/matemixer-backend.c
index 7e26fef..d6e78d2 100644
--- a/libmatemixer/matemixer-backend.c
+++ b/libmatemixer/matemixer-backend.c
@@ -58,10 +58,6 @@ enum {
static guint signals[N_SIGNALS] = { 0, };
-static void mate_mixer_backend_class_init (MateMixerBackendClass *klass);
-
-static void mate_mixer_backend_init (MateMixerBackend *backend);
-
static void mate_mixer_backend_get_property (GObject *object,
guint param_id,
GValue *value,
diff --git a/libmatemixer/matemixer-context.c b/libmatemixer/matemixer-context.c
index 117bda8..5cf2926 100644
--- a/libmatemixer/matemixer-context.c
+++ b/libmatemixer/matemixer-context.c
@@ -108,8 +108,6 @@ enum {
static guint signals[N_SIGNALS] = { 0, };
-static void mate_mixer_context_class_init (MateMixerContextClass *klass);
-
static void mate_mixer_context_get_property (GObject *object,
guint param_id,
GValue *value,
@@ -119,7 +117,6 @@ static void mate_mixer_context_set_property (GObject *object,
const GValue *value,
GParamSpec *pspec);
-static void mate_mixer_context_init (MateMixerContext *context);
static void mate_mixer_context_dispose (GObject *object);
static void mate_mixer_context_finalize (GObject *object);
diff --git a/libmatemixer/matemixer-device-switch.c b/libmatemixer/matemixer-device-switch.c
index 773d74c..51e946e 100644
--- a/libmatemixer/matemixer-device-switch.c
+++ b/libmatemixer/matemixer-device-switch.c
@@ -44,8 +44,6 @@ enum {
static GParamSpec *properties[N_PROPERTIES] = { NULL, };
-static void mate_mixer_device_switch_class_init (MateMixerDeviceSwitchClass *klass);
-
static void mate_mixer_device_switch_get_property (GObject *object,
guint param_id,
GValue *value,
@@ -55,8 +53,6 @@ static void mate_mixer_device_switch_set_property (GObject *o
const GValue *value,
GParamSpec *pspec);
-static void mate_mixer_device_switch_init (MateMixerDeviceSwitch *swtch);
-
G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE (MateMixerDeviceSwitch, mate_mixer_device_switch, MATE_MIXER_TYPE_SWITCH)
static void
diff --git a/libmatemixer/matemixer-device.c b/libmatemixer/matemixer-device.c
index 7f5764c..a53aa98 100644
--- a/libmatemixer/matemixer-device.c
+++ b/libmatemixer/matemixer-device.c
@@ -61,8 +61,6 @@ enum {
static guint signals[N_SIGNALS] = { 0, };
-static void mate_mixer_device_class_init (MateMixerDeviceClass *klass);
-
static void mate_mixer_device_get_property (GObject *object,
guint param_id,
GValue *value,
@@ -72,7 +70,6 @@ static void mate_mixer_device_set_property (GObject *object,
const GValue *value,
GParamSpec *pspec);
-static void mate_mixer_device_init (MateMixerDevice *device);
static void mate_mixer_device_finalize (GObject *object);
G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE (MateMixerDevice, mate_mixer_device, G_TYPE_OBJECT)
diff --git a/libmatemixer/matemixer-stored-control.c b/libmatemixer/matemixer-stored-control.c
index c7d6043..e793916 100644
--- a/libmatemixer/matemixer-stored-control.c
+++ b/libmatemixer/matemixer-stored-control.c
@@ -36,8 +36,6 @@ enum {
static GParamSpec *properties[N_PROPERTIES] = { NULL, };
-static void mate_mixer_stored_control_class_init (MateMixerStoredControlClass *klass);
-
static void mate_mixer_stored_control_get_property (GObject *object,
guint param_id,
GValue *value,
@@ -47,8 +45,6 @@ static void mate_mixer_stored_control_set_property (GObject
const GValue *value,
GParamSpec *pspec);
-static void mate_mixer_stored_control_init (MateMixerStoredControl *control);
-
G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE (MateMixerStoredControl, mate_mixer_stored_control, MATE_MIXER_TYPE_STREAM_CONTROL)
static void
diff --git a/libmatemixer/matemixer-stream-control.c b/libmatemixer/matemixer-stream-control.c
index f0a00a2..df02df1 100644
--- a/libmatemixer/matemixer-stream-control.c
+++ b/libmatemixer/matemixer-stream-control.c
@@ -66,8 +66,6 @@ enum {
static guint signals[N_SIGNALS] = { 0, };
-static void mate_mixer_stream_control_class_init (MateMixerStreamControlClass *klass);
-
static void mate_mixer_stream_control_get_property (GObject *object,
guint param_id,
GValue *value,
@@ -77,7 +75,6 @@ static void mate_mixer_stream_control_set_property (GObject
const GValue *value,
GParamSpec *pspec);
-static void mate_mixer_stream_control_init (MateMixerStreamControl *control);
static void mate_mixer_stream_control_finalize (GObject *object);
G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE (MateMixerStreamControl, mate_mixer_stream_control, G_TYPE_OBJECT)
diff --git a/libmatemixer/matemixer-stream-switch.c b/libmatemixer/matemixer-stream-switch.c
index 797a3ad..814918d 100644
--- a/libmatemixer/matemixer-stream-switch.c
+++ b/libmatemixer/matemixer-stream-switch.c
@@ -46,8 +46,6 @@ enum {
static GParamSpec *properties[N_PROPERTIES] = { NULL, };
-static void mate_mixer_stream_switch_class_init (MateMixerStreamSwitchClass *klass);
-
static void mate_mixer_stream_switch_get_property (GObject *object,
guint param_id,
GValue *value,
@@ -57,8 +55,6 @@ static void mate_mixer_stream_switch_set_property (GObject *o
const GValue *value,
GParamSpec *pspec);
-static void mate_mixer_stream_switch_init (MateMixerStreamSwitch *swtch);
-
G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE (MateMixerStreamSwitch, mate_mixer_stream_switch, MATE_MIXER_TYPE_SWITCH)
static void
diff --git a/libmatemixer/matemixer-stream-toggle.c b/libmatemixer/matemixer-stream-toggle.c
index e15f88f..6a948d6 100644
--- a/libmatemixer/matemixer-stream-toggle.c
+++ b/libmatemixer/matemixer-stream-toggle.c
@@ -45,8 +45,6 @@ enum {
static GParamSpec *properties[N_PROPERTIES] = { NULL, };
-static void mate_mixer_stream_toggle_class_init (MateMixerStreamToggleClass *klass);
-
static void mate_mixer_stream_toggle_get_property (GObject *object,
guint param_id,
GValue *value,
@@ -56,7 +54,6 @@ static void mate_mixer_stream_toggle_set_property (GObject *o
const GValue *value,
GParamSpec *pspec);
-static void mate_mixer_stream_toggle_init (MateMixerStreamToggle *toggle);
static void mate_mixer_stream_toggle_dispose (GObject *object);
G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE (MateMixerStreamToggle, mate_mixer_stream_toggle, MATE_MIXER_TYPE_STREAM_SWITCH)
diff --git a/libmatemixer/matemixer-stream.c b/libmatemixer/matemixer-stream.c
index 402ac06..591e286 100644
--- a/libmatemixer/matemixer-stream.c
+++ b/libmatemixer/matemixer-stream.c
@@ -64,8 +64,6 @@ enum {
static guint signals[N_SIGNALS] = { 0, };
-static void mate_mixer_stream_class_init (MateMixerStreamClass *klass);
-
static void mate_mixer_stream_get_property (GObject *object,
guint param_id,
GValue *value,
@@ -75,7 +73,6 @@ static void mate_mixer_stream_set_property (GObject *object,
const GValue *value,
GParamSpec *pspec);
-static void mate_mixer_stream_init (MateMixerStream *stream);
static void mate_mixer_stream_dispose (GObject *object);
static void mate_mixer_stream_finalize (GObject *object);
diff --git a/libmatemixer/matemixer-switch-option.c b/libmatemixer/matemixer-switch-option.c
index 8f34bbf..e26bd2c 100644
--- a/libmatemixer/matemixer-switch-option.c
+++ b/libmatemixer/matemixer-switch-option.c
@@ -43,8 +43,6 @@ enum {
static GParamSpec *properties[N_PROPERTIES] = { NULL, };
-static void mate_mixer_switch_option_class_init (MateMixerSwitchOptionClass *klass);
-
static void mate_mixer_switch_option_get_property (GObject *object,
guint param_id,
GValue *value,
@@ -54,7 +52,6 @@ static void mate_mixer_switch_option_set_property (GObject *o
const GValue *value,
GParamSpec *pspec);
-static void mate_mixer_switch_option_init (MateMixerSwitchOption *option);
static void mate_mixer_switch_option_finalize (GObject *object);
G_DEFINE_TYPE_WITH_PRIVATE (MateMixerSwitchOption, mate_mixer_switch_option, G_TYPE_OBJECT)
diff --git a/libmatemixer/matemixer-switch.c b/libmatemixer/matemixer-switch.c
index 2fe0cec..a63f700 100644
--- a/libmatemixer/matemixer-switch.c
+++ b/libmatemixer/matemixer-switch.c
@@ -47,8 +47,6 @@ enum {
static GParamSpec *properties[N_PROPERTIES] = { NULL, };
-static void mate_mixer_switch_class_init (MateMixerSwitchClass *klass);
-
static void mate_mixer_switch_get_property (GObject *object,
guint param_id,
GValue *value,
@@ -58,7 +56,6 @@ static void mate_mixer_switch_set_property (GObject *object,
const GValue *value,
GParamSpec *pspec);
-static void mate_mixer_switch_init (MateMixerSwitch *swtch);
static void mate_mixer_switch_dispose (GObject *object);
static void mate_mixer_switch_finalize (GObject *object);