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/gtkbuilder.c | |
parent | 2f0d40335b83d70d04a205dd17e8a5514b79f2d4 (diff) | |
download | gtk+-2fb1c064020c5db189285b1d5e8b8dcea8e9d09b.tar.gz |
[GI] Add missing (out) and (array) annotations
Diffstat (limited to 'gtk/gtkbuilder.c')
-rw-r--r-- | gtk/gtkbuilder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkbuilder.c b/gtk/gtkbuilder.c index faa3ef79ad..b658654abf 100644 --- a/gtk/gtkbuilder.c +++ b/gtk/gtkbuilder.c @@ -1341,7 +1341,7 @@ gtk_builder_connect_signals_full (GtkBuilder *builder, * @builder: a #GtkBuilder * @pspec: the #GParamSpec for the property * @string: the string representation of the value - * @value: the #GValue to store the result in + * @value: (out): the #GValue to store the result in * @error: (allow-none): return location for an error, or %NULL * * This function demarshals a value from a string. This function @@ -1397,7 +1397,7 @@ gtk_builder_value_from_string (GtkBuilder *builder, * @builder: a #GtkBuilder * @type: the #GType of the value * @string: the string representation of the value - * @value: the #GValue to store the result in + * @value: (out): the #GValue to store the result in * @error: (allow-none): return location for an error, or %NULL * * Like gtk_builder_value_from_string(), this function demarshals |