summaryrefslogtreecommitdiff
path: root/plugins/media-keys/msd-media-keys-manager.c
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2020-08-10 14:34:23 +0200
committerZenWalker <[email protected]>2020-08-15 14:10:03 +0200
commit7e8357d5cc6e04ae96734e2c8e1f87b9a154a52c (patch)
tree7fdf5c59c8cea2f9067146344434a3d17f69ae71 /plugins/media-keys/msd-media-keys-manager.c
parent27adfb941829c99638219e3e76371c86e42e3dcb (diff)
downloadmate-settings-daemon-7e8357d5cc6e04ae96734e2c8e1f87b9a154a52c.tar.bz2
mate-settings-daemon-7e8357d5cc6e04ae96734e2c8e1f87b9a154a52c.tar.xz
add G_GNUC_UNUSED in some unused parameters
Diffstat (limited to 'plugins/media-keys/msd-media-keys-manager.c')
-rw-r--r--plugins/media-keys/msd-media-keys-manager.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/media-keys/msd-media-keys-manager.c b/plugins/media-keys/msd-media-keys-manager.c
index 22d1a14..8c0184a 100644
--- a/plugins/media-keys/msd-media-keys-manager.c
+++ b/plugins/media-keys/msd-media-keys-manager.c
@@ -853,8 +853,8 @@ update_default_input (MsdMediaKeysManager *manager)
}
static void
-on_context_state_notify (MateMixerContext *context,
- GParamSpec *pspec,
+on_context_state_notify (MateMixerContext *context G_GNUC_UNUSED,
+ GParamSpec *pspec G_GNUC_UNUSED,
MsdMediaKeysManager *manager)
{
update_default_output (manager);
@@ -862,23 +862,23 @@ on_context_state_notify (MateMixerContext *context,
}
static void
-on_context_default_output_notify (MateMixerContext *context,
- GParamSpec *pspec,
+on_context_default_output_notify (MateMixerContext *context G_GNUC_UNUSED,
+ GParamSpec *pspec G_GNUC_UNUSED,
MsdMediaKeysManager *manager)
{
update_default_output (manager);
}
static void
-on_context_default_input_notify (MateMixerContext *context,
- GParamSpec *pspec,
+on_context_default_input_notify (MateMixerContext *context G_GNUC_UNUSED,
+ GParamSpec *pspec G_GNUC_UNUSED,
MsdMediaKeysManager *manager)
{
update_default_input (manager);
}
static void
-on_context_stream_removed (MateMixerContext *context,
+on_context_stream_removed (MateMixerContext *context G_GNUC_UNUSED,
const gchar *name,
MsdMediaKeysManager *manager)
{