diff options
author | Pavel Holejsovsky <pholejs@src.gnome.org> | 2011-01-18 10:01:17 +0100 |
---|---|---|
committer | Pavel Holejsovsky <pholejs@src.gnome.org> | 2011-01-20 13:57:18 +0100 |
commit | 2f0d40335b83d70d04a205dd17e8a5514b79f2d4 (patch) | |
tree | e154bd17faf149c40807461f9e671983e32b6f82 /gtk/gtkcontainer.c | |
parent | 9b88eb356dde2578ff652511fcfc083b66be7b0b (diff) | |
download | gtk+-2f0d40335b83d70d04a205dd17e8a5514b79f2d4.tar.gz |
[GI] Add missing (transfer) annotations
Diffstat (limited to 'gtk/gtkcontainer.c')
-rw-r--r-- | gtk/gtkcontainer.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gtk/gtkcontainer.c b/gtk/gtkcontainer.c index d531bbae10..d6d1877330 100644 --- a/gtk/gtkcontainer.c +++ b/gtk/gtkcontainer.c @@ -1196,10 +1196,10 @@ gtk_container_class_install_child_property (GtkContainerClass *cclass, /** * gtk_container_class_find_child_property: - * @cclass: a #GtkContainerClass + * @cclass: (type GtkContainerClass): a #GtkContainerClass * @property_name: the name of the child property to find - * @returns: (allow-none): the #GParamSpec of the child property or %NULL if @class has no - * child property with that name. + * @returns: (transfer none): the #GParamSpec of the child property or + * %NULL if @class has no child property with that name. * * Finds a child property of a container class by name. */ @@ -1951,8 +1951,9 @@ gtk_container_set_focus_child (GtkContainer *container, * currently focused widget. That can be obtained by calling * gtk_window_get_focus(). * - * Returns: The child widget which will recieve the focus inside @container when - * the @conatiner is focussed, or %NULL if none is set. + * Returns: (transfer none): The child widget which will receive the + * focus inside @container when the @conatiner is focussed, + * or %NULL if none is set. * * Since: 2.14 **/ |