Don't assume that a path of depth 0 has no indices. (#467324, Szilard
2007-09-09 Matthias Clasen <mclasen@redhat.com> * gtk/gtktreemodelfilter.c (gtk_tree_model_filter_rows_reordered): * gtk/gtktreemodelsort.c (gtk_tree_model_sort_rows_reordered): Don't assume that a path of depth 0 has no indices. (#467324, Szilard Pfeiffer) svn path=/trunk/; revision=18770
This commit is contained in:
committed by
Matthias Clasen
parent
57e8bdcb54
commit
5c4d0d697d
@ -807,7 +807,7 @@ gtk_tree_model_sort_rows_reordered (GtkTreeModel *s_model,
|
||||
|
||||
g_return_if_fail (new_order != NULL);
|
||||
|
||||
if (s_path == NULL || gtk_tree_path_get_indices (s_path) == NULL)
|
||||
if (s_path == NULL || gtk_tree_path_get_depth (s_path) = 0)
|
||||
{
|
||||
if (tree_model_sort->root == NULL)
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user