*** empty log message ***

This commit is contained in:
Matthias Clasen
2004-11-15 16:22:49 +00:00
parent 650de3db38
commit 5c93ee5d5c
7 changed files with 32 additions and 1 deletions

View File

@ -734,6 +734,9 @@ gtk_tree_path_prev (GtkTreePath *path)
{
g_return_val_if_fail (path != NULL, FALSE);
if (path->depth == 0)
return FALSE;
if (path->indices[path->depth - 1] == 0)
return FALSE;