Small doc improvement

svn path=/trunk/; revision=20912
This commit is contained in:
Matthias Clasen 2008-07-28 23:29:38 +00:00
parent 37cc0f269b
commit 43d0b7792a
2 changed files with 11 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2008-07-28 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktreemodel.c: Small doc improvements.
2008-07-28 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump GLib requirement to 2.17.5 for GEmblemedIcon

View File

@ -850,10 +850,11 @@ gtk_tree_path_down (GtkTreePath *path)
* gtk_tree_iter_copy:
* @iter: A #GtkTreeIter.
*
* Creates a dynamically allocated tree iterator as a copy of @iter. This
* function is not intended for use in applications, because you can just copy
* the structs by value (<literal>GtkTreeIter new_iter = iter;</literal>). You
* must free this iter with gtk_tree_iter_free ().
* Creates a dynamically allocated tree iterator as a copy of @iter.
* This function is not intended for use in applications, because you
* can just copy the structs by value
* (<literal>GtkTreeIter new_iter = iter;</literal>).
* You must free this iter with gtk_tree_iter_free().
*
* Return value: a newly-allocated copy of @iter.
**/
@ -874,8 +875,8 @@ gtk_tree_iter_copy (GtkTreeIter *iter)
* gtk_tree_iter_free:
* @iter: A dynamically allocated tree iterator.
*
* Frees an iterator that has been allocated on the heap. This function is
* mainly used for language bindings.
* Frees an iterator that has been allocated by gtk_tree_iter_copy().
* This function is mainly used for language bindings.
**/
void
gtk_tree_iter_free (GtkTreeIter *iter)