]> Pileus Git - ~andy/gtk/commitdiff
fix a typo which caused this whole thing to not function ...
authorKristian Rietveld <kris@gtk.org>
Sat, 14 Jan 2006 19:58:04 +0000 (19:58 +0000)
committerKristian Rietveld <kristian@src.gnome.org>
Sat, 14 Jan 2006 19:58:04 +0000 (19:58 +0000)
2006-01-14  Kristian Rietveld  <kris@gtk.org>

* gtk/gtktreemodelsort.c (gtk_tree_model_sort_iter_children): fix
a typo which caused this whole thing to not function ...

ChangeLog
ChangeLog.pre-2-10
gtk/gtktreemodelsort.c

index 28ce0593e4e4e962f6416e70c26b1676d3002660..4e4977831ed029bab1635fe08b0e2328706b883e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-01-14  Kristian Rietveld  <kris@gtk.org>
+
+       * gtk/gtktreemodelsort.c (gtk_tree_model_sort_iter_children): fix
+       a typo which caused this whole thing to not function ...
+
 2006-01-14  Kristian Rietveld  <kris@gtk.org>
 
        * gtk/gtktreeview.c (gtk_tree_view_size_allocate),
index 28ce0593e4e4e962f6416e70c26b1676d3002660..4e4977831ed029bab1635fe08b0e2328706b883e 100644 (file)
@@ -1,3 +1,8 @@
+2006-01-14  Kristian Rietveld  <kris@gtk.org>
+
+       * gtk/gtktreemodelsort.c (gtk_tree_model_sort_iter_children): fix
+       a typo which caused this whole thing to not function ...
+
 2006-01-14  Kristian Rietveld  <kris@gtk.org>
 
        * gtk/gtktreeview.c (gtk_tree_view_size_allocate),
index df2fe2e31496d34b5fc2c9696a329ae6428567a4..f8df268b17d8fc041b032e4419dedca80c9ab2f9 100644 (file)
@@ -1095,7 +1095,7 @@ gtk_tree_model_sort_iter_children (GtkTreeModel *tree_model,
   iter->stamp = 0;
   g_return_val_if_fail (tree_model_sort->child_model != NULL, FALSE);
   if (parent) 
-    g_return_val_if_fail (VALID_ITER (iter, tree_model_sort), FALSE);
+    g_return_val_if_fail (VALID_ITER (parent, tree_model_sort), FALSE);
 
   if (parent == NULL)
     {