From 24fec1aa106985c23cf17c721a61d36070af2868 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 26 Oct 2005 14:32:10 +0000 Subject: [PATCH] Clarify docs --- ChangeLog | 3 +++ ChangeLog.pre-2-10 | 3 +++ gtk/gtktreemodel.c | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index da7889980a..2fcaa89d34 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2005-10-26 Matthias Clasen + * 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) diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index da7889980a..2fcaa89d34 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,8 @@ 2005-10-26 Matthias Clasen + * 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) diff --git a/gtk/gtktreemodel.c b/gtk/gtktreemodel.c index 148b315758..de99ba65ec 100644 --- a/gtk/gtktreemodel.c +++ b/gtk/gtktreemodel.c @@ -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[newpos] = oldpos.