diff options
Diffstat (limited to 'gtk/gtkfilesystemmodel.c')
-rw-r--r-- | gtk/gtkfilesystemmodel.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gtk/gtkfilesystemmodel.c b/gtk/gtkfilesystemmodel.c index 1e3158dfab..9c2dd30607 100644 --- a/gtk/gtkfilesystemmodel.c +++ b/gtk/gtkfilesystemmodel.c @@ -1642,7 +1642,6 @@ do_files_changed (GtkFileSystemModel *model, { GtkTreeModel *tree_model = GTK_TREE_MODEL (model); FileModelNode *children; - FileModelNode *prev = NULL; GtkTreeIter iter; GtkTreePath *path; GSList *sorted_paths; @@ -1666,7 +1665,6 @@ do_files_changed (GtkFileSystemModel *model, if (parent_node && parent_node->has_dummy) { - prev = children; children = children->next; gtk_tree_path_next (path); } @@ -1678,7 +1676,6 @@ do_files_changed (GtkFileSystemModel *model, while (children && (!children->path || gtk_file_path_compare (children->path, file_path) < 0)) { - prev = children; if (children->is_visible) gtk_tree_path_next (path); |