diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-05-19 07:24:34 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-05-20 19:17:49 -0400 |
commit | 7fe0610b681c96823c45b88ca2c9657f1320bef8 (patch) | |
tree | 41969f7b0b3526fdc2fba178ab04c96bb1371ffb /gtk/gtkbuildable.c | |
parent | 8ba16eb4f1e6df67d79a9d509a3a45126a032e46 (diff) | |
download | gtk+-7fe0610b681c96823c45b88ca2c9657f1320bef8.tar.gz |
introspection: Stop using allow-none
allow-none has been deprecated for a long time
already. Instead use optional and nullable everywhere.
Diffstat (limited to 'gtk/gtkbuildable.c')
-rw-r--r-- | gtk/gtkbuildable.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkbuildable.c b/gtk/gtkbuildable.c index 232528ae95..46076eb21c 100644 --- a/gtk/gtkbuildable.c +++ b/gtk/gtkbuildable.c @@ -188,7 +188,7 @@ gtk_buildable_construct_child (GtkBuildable *buildable, * gtk_buildable_custom_tag_start: * @buildable: a `GtkBuildable` * @builder: a `GtkBuilder` used to construct this object - * @child: (allow-none): child object or %NULL for non-child tags + * @child: (nullable): child object or %NULL for non-child tags * @tagname: name of tag * @parser: (out): a #GMarkupParser to fill in * @data: (out): return location for user data that will be passed in @@ -224,7 +224,7 @@ gtk_buildable_custom_tag_start (GtkBuildable *buildable, * gtk_buildable_custom_tag_end: * @buildable: A `GtkBuildable` * @builder: `GtkBuilder` used to construct this object - * @child: (allow-none): child object or %NULL for non-child tags + * @child: (nullable): child object or %NULL for non-child tags * @tagname: name of tag * @data: user data that will be passed in to parser functions * @@ -253,7 +253,7 @@ gtk_buildable_custom_tag_end (GtkBuildable *buildable, * gtk_buildable_custom_finished: * @buildable: a `GtkBuildable` * @builder: a `GtkBuilder` - * @child: (allow-none): child object or %NULL for non-child tags + * @child: (nullable): child object or %NULL for non-child tags * @tagname: the name of the tag * @data: user data created in custom_tag_start * |