gtk_tree_path_next(): Add a note to the documentation about the changed

2007-01-23  Murray Cumming  <murrayc@murrayc.com>

        * gtk/gtktreemodel.c: gtk_tree_path_next(): 
        Add a note to the documentation about the changed path being only a 
        path to a potential node, so you must check that it really exists.

svn path=/branches/gtk-2-10/; revision=17204
This commit is contained in:
Murray Cumming
2007-01-23 14:55:30 +00:00
committed by Murray Cumming
parent 2cf08cd118
commit 921d8fb377
2 changed files with 8 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2007-01-23 Murray Cumming <murrayc@murrayc.com>
* gtk/gtktreemodel.c: gtk_tree_path_next():
Add a note to the documentation about the changed path being only a
path to a potential node, so you must check that it really exists.
2007-01-22 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version

View File

@@ -775,7 +775,8 @@ gtk_tree_path_is_descendant (GtkTreePath *path,
* gtk_tree_path_next:
* @path: A #GtkTreePath.
*
* Moves the @path to point to the next node at the current depth.
* Moves the @path to point to the next potential node at the current depth.
* You must use gtk_tree_model_get_iter() to discover whether a corresponding row actually exists.
**/
void
gtk_tree_path_next (GtkTreePath *path)