diff options
author | Pavel Holejsovsky <pholejs@src.gnome.org> | 2011-01-18 10:14:33 +0100 |
---|---|---|
committer | Pavel Holejsovsky <pholejs@src.gnome.org> | 2011-01-20 13:56:06 +0100 |
commit | 3c8fc21e9b3e035b86ae0715b62dd88085ec08a8 (patch) | |
tree | 924c3474e294b5d2c65699bd839264ce8b6ea704 /gtk/gtkfilechooser.c | |
parent | 497b66a5ab86b0a9c4a5af41a0c9e9343b7bb0cd (diff) | |
download | gtk+-3c8fc21e9b3e035b86ae0715b62dd88085ec08a8.tar.gz |
[GI] Fixes of existing incorrect annotations
Diffstat (limited to 'gtk/gtkfilechooser.c')
-rw-r--r-- | gtk/gtkfilechooser.c | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/gtk/gtkfilechooser.c b/gtk/gtkfilechooser.c index da9d7c5e94..9243612469 100644 --- a/gtk/gtkfilechooser.c +++ b/gtk/gtkfilechooser.c @@ -1698,9 +1698,10 @@ gtk_file_chooser_unselect_file (GtkFileChooser *chooser, * Lists all the selected files and subfolders in the current folder of @chooser * as #GFile. An internal function, see gtk_file_chooser_get_uris(). * - * Return value: (element-type utf8) (transfer full): a #GSList containing a #GFile for each selected - * file and subfolder in the current folder. Free the returned list - * with g_slist_free(), and the files with g_object_unref(). + * Return value: (element-type GFile) (transfer full): a #GSList + * containing a #GFile for each selected file and subfolder in the + * current folder. Free the returned list with g_slist_free(), and + * the files with g_object_unref(). * * Since: 2.14 **/ @@ -1988,7 +1989,7 @@ gtk_file_chooser_get_use_preview_label (GtkFileChooser *chooser) * Gets the #GFile that should be previewed in a custom preview * Internal function, see gtk_file_chooser_get_preview_uri(). * - * Return value: (transfer none): the #GFile for the file to preview, + * Return value: (transfer full): the #GFile for the file to preview, * or %NULL if no file is selected. Free with g_object_unref(). * * Since: 2.14 @@ -2208,10 +2209,10 @@ gtk_file_chooser_remove_filter (GtkFileChooser *chooser, * Lists the current set of user-selectable filters; see * gtk_file_chooser_add_filter(), gtk_file_chooser_remove_filter(). * - * Return value: (element-type utf8) (transfer container): a #GSList containing the current set of - * user selectable filters. The contents of the list are - * owned by GTK+, but you must free the list itself with - * g_slist_free() when you are done with it. + * Return value: (element-type GtkFileFilter) (transfer container): a + * #GSList containing the current set of user selectable filters. The + * contents of the list are owned by GTK+, but you must free the list + * itself with g_slist_free() when you are done with it. * * Since: 2.4 **/ |