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/gtklistbox.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/gtklistbox.c')
-rw-r--r-- | gtk/gtklistbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtklistbox.c b/gtk/gtklistbox.c index 17f19072ec..57d1f336e8 100644 --- a/gtk/gtklistbox.c +++ b/gtk/gtklistbox.c @@ -3721,7 +3721,7 @@ gtk_list_box_row_class_init (GtkListBoxRowClass *klass) G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (GtkListBoxRowClass, activate), NULL, NULL, - _gtk_marshal_VOID__VOID, + NULL, G_TYPE_NONE, 0); widget_class->activate_signal = row_signals[ROW__ACTIVATE]; |