summaryrefslogtreecommitdiff
path: root/gtk/gtkentry.c
diff options
context:
space:
mode:
authorChristian Hergert <chergert@redhat.com>2019-05-30 20:56:50 -0700
committerChristian Hergert <chergert@redhat.com>2019-05-30 20:56:50 -0700
commitbd26cce812c426ab37db1613a05be52023ea1778 (patch)
tree602a05f31728ff74b315695ba8b1ea4436e27be7 /gtk/gtkentry.c
parent8925c1729781442d8def33a2c29bcc3a672bf3ec (diff)
downloadgtk+-bd26cce812c426ab37db1613a05be52023ea1778.tar.gz
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
Diffstat (limited to 'gtk/gtkentry.c')
-rw-r--r--gtk/gtkentry.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c
index aa447f5739..e1cf3131f0 100644
--- a/gtk/gtkentry.c
+++ b/gtk/gtkentry.c
@@ -870,7 +870,7 @@ gtk_entry_class_init (GtkEntryClass *class)
G_SIGNAL_RUN_LAST,
0,
NULL, NULL,
- g_cclosure_marshal_VOID__ENUM,
+ NULL,
G_TYPE_NONE, 1,
GTK_TYPE_ENTRY_ICON_POSITION);
@@ -888,7 +888,7 @@ gtk_entry_class_init (GtkEntryClass *class)
G_SIGNAL_RUN_LAST,
0,
NULL, NULL,
- g_cclosure_marshal_VOID__ENUM,
+ NULL,
G_TYPE_NONE, 1,
GTK_TYPE_ENTRY_ICON_POSITION);