diff options
author | Alexander Larsson <alexl@redhat.com> | 2019-08-29 15:21:20 +0200 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-09-10 12:08:20 -0400 |
commit | 96b37f4eb8ec0e7598534a83816be7c013fd1c9b (patch) | |
tree | dfb83ab6a57766627dc82cfc12b8eadef7bfaa5e /gtk/gtkiconview.c | |
parent | 135cea76fbe41cea7a83ebb3381bdc1410f8f9fb (diff) | |
download | gtk+-96b37f4eb8ec0e7598534a83816be7c013fd1c9b.tar.gz |
Use the new GtkBuildableParser type in GtkBuildable interfaces
Diffstat (limited to 'gtk/gtkiconview.c')
-rw-r--r-- | gtk/gtkiconview.c | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/gtk/gtkiconview.c b/gtk/gtkiconview.c index bc18d9218d..8c5962d1fa 100644 --- a/gtk/gtkiconview.c +++ b/gtk/gtkiconview.c @@ -312,18 +312,19 @@ static void remove_scroll_timeout (GtkIconView *icon_view); /* GtkBuildable */ static GtkBuildableIface *parent_buildable_iface; -static void gtk_icon_view_buildable_init (GtkBuildableIface *iface); -static gboolean gtk_icon_view_buildable_custom_tag_start (GtkBuildable *buildable, - GtkBuilder *builder, - GObject *child, - const gchar *tagname, - GMarkupParser *parser, - gpointer *data); -static void gtk_icon_view_buildable_custom_tag_end (GtkBuildable *buildable, - GtkBuilder *builder, - GObject *child, - const gchar *tagname, - gpointer data); +static void gtk_icon_view_buildable_init (GtkBuildableIface *iface); +static gboolean gtk_icon_view_buildable_custom_tag_start (GtkBuildable *buildable, + GtkBuilder *builder, + GObject *child, + const gchar *tagname, + GtkBuildableParser *parser, + gpointer *data); +static void gtk_icon_view_buildable_custom_tag_end (GtkBuildable *buildable, + GtkBuilder *builder, + GObject *child, + const gchar *tagname, + gpointer data); + static guint icon_view_signals[LAST_SIGNAL] = { 0 }; @@ -6856,12 +6857,12 @@ gtk_icon_view_get_activate_on_single_click (GtkIconView *icon_view) } static gboolean -gtk_icon_view_buildable_custom_tag_start (GtkBuildable *buildable, - GtkBuilder *builder, - GObject *child, - const gchar *tagname, - GMarkupParser *parser, - gpointer *data) +gtk_icon_view_buildable_custom_tag_start (GtkBuildable *buildable, + GtkBuilder *builder, + GObject *child, + const gchar *tagname, + GtkBuildableParser *parser, + gpointer *data) { if (parent_buildable_iface->custom_tag_start (buildable, builder, child, tagname, parser, data)) |