From bd26cce812c426ab37db1613a05be52023ea1778 Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Thu, 30 May 2019 20:56:50 -0700 Subject: gtk: rely on default marshallers Similar to previous removals of g_cclosure_marshal_VOID__VOID we can remove other marshallers for which are a simple G_TYPE_NONE with single parameter. In those cases, GLib will setup both a c_marshaller and va_marshaller for us. Before this commit, we would not get a va_marshaller because the c_marshaller is set. Related to GNOME/Initiatives#10 --- gtk/gtksearchengine.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gtk/gtksearchengine.c') diff --git a/gtk/gtksearchengine.c b/gtk/gtksearchengine.c index 9f1c20e0f4..74496c9695 100644 --- a/gtk/gtksearchengine.c +++ b/gtk/gtksearchengine.c @@ -174,7 +174,7 @@ _gtk_search_engine_class_init (GtkSearchEngineClass *class) G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GtkSearchEngineClass, hits_added), NULL, NULL, - g_cclosure_marshal_VOID__POINTER, + NULL, G_TYPE_NONE, 1, G_TYPE_POINTER); @@ -193,7 +193,7 @@ _gtk_search_engine_class_init (GtkSearchEngineClass *class) G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GtkSearchEngineClass, error), NULL, NULL, - g_cclosure_marshal_VOID__STRING, + NULL, G_TYPE_NONE, 1, G_TYPE_STRING); } -- cgit v1.2.1