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/gtkbuildable.c | |
parent | 135cea76fbe41cea7a83ebb3381bdc1410f8f9fb (diff) | |
download | gtk+-96b37f4eb8ec0e7598534a83816be7c013fd1c9b.tar.gz |
Use the new GtkBuildableParser type in GtkBuildable interfaces
Diffstat (limited to 'gtk/gtkbuildable.c')
-rw-r--r-- | gtk/gtkbuildable.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/gtkbuildable.c b/gtk/gtkbuildable.c index c9972a5b71..7211c3b300 100644 --- a/gtk/gtkbuildable.c +++ b/gtk/gtkbuildable.c @@ -230,12 +230,12 @@ gtk_buildable_construct_child (GtkBuildable *buildable, * if it doesn't. **/ gboolean -gtk_buildable_custom_tag_start (GtkBuildable *buildable, - GtkBuilder *builder, - GObject *child, - const gchar *tagname, - GMarkupParser *parser, - gpointer *data) +gtk_buildable_custom_tag_start (GtkBuildable *buildable, + GtkBuilder *builder, + GObject *child, + const gchar *tagname, + GtkBuildableParser *parser, + gpointer *data) { GtkBuildableIface *iface; |