diff options
author | Benjamin Otte <otte@redhat.com> | 2016-08-29 16:00:17 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-08-29 16:20:54 +0200 |
commit | e1a03ead7a541a2118816b1632e957cc2bb44c8f (patch) | |
tree | f3f1f5fafcdfb1fdff2f7420c5cb1216af71abe5 /gtk/gtkappchooserbutton.c | |
parent | 6af5033386b60bdf71cc21d99d579c2a8c389880 (diff) | |
download | gtk+-e1a03ead7a541a2118816b1632e957cc2bb44c8f.tar.gz |
Use NULL for generic marshallers in g_signal_new()
glib will use the correct marshaller automatically. And as a side
effect, we also get all glib optimizations, like a va marshaller.
Diffstat (limited to 'gtk/gtkappchooserbutton.c')
-rw-r--r-- | gtk/gtkappchooserbutton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkappchooserbutton.c b/gtk/gtkappchooserbutton.c index 7b6dcffd95..c0af584a95 100644 --- a/gtk/gtkappchooserbutton.c +++ b/gtk/gtkappchooserbutton.c @@ -666,7 +666,7 @@ gtk_app_chooser_button_class_init (GtkAppChooserButtonClass *klass) G_SIGNAL_RUN_FIRST | G_SIGNAL_DETAILED, G_STRUCT_OFFSET (GtkAppChooserButtonClass, custom_item_activated), NULL, NULL, - _gtk_marshal_VOID__STRING, + NULL, G_TYPE_NONE, 1, G_TYPE_STRING); } |