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/gtkaccelgroup.c | |
parent | 9b88eb356dde2578ff652511fcfc083b66be7b0b (diff) | |
download | gtk+-2f0d40335b83d70d04a205dd17e8a5514b79f2d4.tar.gz |
[GI] Add missing (transfer) annotations
Diffstat (limited to 'gtk/gtkaccelgroup.c')
-rw-r--r-- | gtk/gtkaccelgroup.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk/gtkaccelgroup.c b/gtk/gtkaccelgroup.c index f575c54a30..a0360055e4 100644 --- a/gtk/gtkaccelgroup.c +++ b/gtk/gtkaccelgroup.c @@ -378,8 +378,8 @@ gtk_accel_groups_from_object (GObject *object) * @find_func: (scope call): a function to filter the entries * of @accel_group with * @data: data to pass to @find_func - * @returns: the key of the first entry passing @find_func. The key is - * owned by GTK+ and must not be freed. + * @returns: (transfer none): the key of the first entry passing + * @find_func. The key is owned by GTK+ and must not be freed. * * Finds the first entry in an accelerator group for which * @find_func returns %TRUE and returns its #GtkAccelKey. @@ -851,7 +851,8 @@ gtk_accel_group_query (GtkAccelGroup *accel_group, /** * gtk_accel_group_from_accel_closure: * @closure: a #GClosure - * @returns: (allow-none): the #GtkAccelGroup to which @closure is connected, or %NULL. + * @returns: (transfer none): the #GtkAccelGroup to which @closure + * is connected, or %NULL. * * Finds the #GtkAccelGroup to which @closure is connected; * see gtk_accel_group_connect(). |