Clarify docs

This commit is contained in:
Matthias Clasen
2005-10-26 14:32:10 +00:00
parent b4f7784a84
commit 24fec1aa10
3 changed files with 7 additions and 1 deletions

View File

@@ -1,5 +1,8 @@
2005-10-26 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Clarify
docs. (#317682, Christian - Manny Calavera - Neumair)
* gdk/x11/gdkdnd-x11.c: Remove an extra const which doesn't
seem to affect the placement of the data in the readonly
section, and causes problems with some compilers. (#317844)

View File

@@ -1,5 +1,8 @@
2005-10-26 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Clarify
docs. (#317682, Christian - Manny Calavera - Neumair)
* gdk/x11/gdkdnd-x11.c: Remove an extra const which doesn't
seem to affect the placement of the data in the readonly
section, and causes problems with some compilers. (#317844)

View File

@@ -1476,7 +1476,7 @@ gtk_tree_model_row_deleted (GtkTreeModel *tree_model,
* gtk_tree_model_rows_reordered:
* @tree_model: A #GtkTreeModel
* @path: A #GtkTreePath pointing to the tree node whose children have been reordered
* @iter: A valid #GtkTreeIter pointing to the node whose children have been reordered
* @iter: A valid #GtkTreeIter pointing to the node whose children have been reordered, or %NULL if the depth of @path is 0.
* @new_order: an array of integers mapping the current position of each child
* to its old position before the re-ordering,
* i.e. @new_order<literal>[newpos] = oldpos</literal>.