Skip to content

Commit

Permalink
eel-wrap-table: add G_GNUC_UNUSED in unused parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
sc0w committed Dec 28, 2024
1 parent c5021ca commit 3445b02
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions eel/eel-wrap-table.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ eel_wrap_table_finalize (GObject *object)

static void
eel_wrap_table_set_property (GObject *object,
guint property_id,
const GValue *value,
GParamSpec *pspec)
guint property_id,
const GValue *value,
GParamSpec *pspec G_GNUC_UNUSED)
{
EelWrapTable *wrap_table;

Expand Down Expand Up @@ -138,9 +138,9 @@ eel_wrap_table_set_property (GObject *object,

static void
eel_wrap_table_get_property (GObject *object,
guint property_id,
GValue *value,
GParamSpec *pspec)
guint property_id,
GValue *value,
GParamSpec *pspec G_GNUC_UNUSED)
{
EelWrapTable *wrap_table;

Expand Down Expand Up @@ -393,9 +393,9 @@ eel_wrap_table_remove (CtkContainer *container,

static void
eel_wrap_table_forall (CtkContainer *container,
gboolean include_internals,
CtkCallback callback,
gpointer callback_data)
gboolean include_internals G_GNUC_UNUSED,
CtkCallback callback,
gpointer callback_data)
{
EelWrapTable *wrap_table;
GList *node;
Expand All @@ -415,7 +415,7 @@ eel_wrap_table_forall (CtkContainer *container,
}

static GType
eel_wrap_table_child_type (CtkContainer *container)
eel_wrap_table_child_type (CtkContainer *container G_GNUC_UNUSED)
{
return CTK_TYPE_WIDGET;
}
Expand Down Expand Up @@ -757,9 +757,9 @@ wrap_table_child_visible_in (CtkWidget *child, CtkWidget *scrolled)
}

static gboolean
wrap_table_child_focus_in (CtkWidget *widget,
CdkEventFocus *event,
gpointer data)
wrap_table_child_focus_in (CtkWidget *widget,
CdkEventFocus *event G_GNUC_UNUSED,
gpointer data G_GNUC_UNUSED)
{
gint x, y;
CtkWidget *container, *viewport = NULL;
Expand Down

0 comments on commit 3445b02

Please sign in to comment.