From 7e8357d5cc6e04ae96734e2c8e1f87b9a154a52c Mon Sep 17 00:00:00 2001 From: Pablo Barciela Date: Mon, 10 Aug 2020 14:34:23 +0200 Subject: add G_GNUC_UNUSED in some unused parameters --- plugins/media-keys/msd-media-keys-manager.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'plugins/media-keys') 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) { -- cgit v1.2.1