fix a typo which caused this whole thing to not function ...

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 ...
This commit is contained in:
Kristian Rietveld
2006-01-14 19:58:04 +00:00
committed by Kristian Rietveld
parent f396a237dd
commit 8700ff7bcf
3 changed files with 11 additions and 1 deletions

View 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),

View 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),

View 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)
{