diff options
author | Pavel Holejsovsky <pholejs@src.gnome.org> | 2011-01-18 10:10:30 +0100 |
---|---|---|
committer | Pavel Holejsovsky <pholejs@src.gnome.org> | 2011-01-20 13:57:20 +0100 |
commit | 2fb1c064020c5db189285b1d5e8b8dcea8e9d09b (patch) | |
tree | c7d26238efe9c5cad53cd7431d2f2eac5dfed7ea /gtk/gtkbuildable.c | |
parent | 2f0d40335b83d70d04a205dd17e8a5514b79f2d4 (diff) | |
download | gtk+-2fb1c064020c5db189285b1d5e8b8dcea8e9d09b.tar.gz |
[GI] Add missing (out) and (array) annotations
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 25c9fc2e52..9dfb64cdbd 100644 --- a/gtk/gtkbuildable.c +++ b/gtk/gtkbuildable.c @@ -235,8 +235,8 @@ gtk_buildable_construct_child (GtkBuildable *buildable, * @builder: a #GtkBuilder used to construct this object * @child: (allow-none): child object or %NULL for non-child tags * @tagname: name of tag - * @parser: a #GMarkupParser structure to fill in - * @data: return location for user data that will be passed in + * @parser: (out): a #GMarkupParser structure to fill in + * @data: (out): return location for user data that will be passed in * to parser functions * * This is called for each unknown element under <child>. @@ -273,7 +273,7 @@ gtk_buildable_custom_tag_start (GtkBuildable *buildable, * @builder: #GtkBuilder used to construct this object * @child: (allow-none): child object or %NULL for non-child tags * @tagname: name of tag - * @data: user data that will be passed in to parser functions + * @data: (type gpointer): user data that will be passed in to parser functions * * This is called at the end of each custom element handled by * the buildable. |