diff options
author | Colin Walters <walters@verbum.org> | 2010-06-28 14:15:10 -0400 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2010-06-28 14:15:10 -0400 |
commit | 905f98816674bf3098d519778d73b0bf1acdf286 (patch) | |
tree | 1c438a82f0fc629d8edcf948198c323e0b08d7e2 /modules/other | |
parent | 17f8b5e581b3f2eca4e58c616bfbf2b3d6639974 (diff) | |
download | gtk+-905f98816674bf3098d519778d73b0bf1acdf286.tar.gz |
Revert "Add length to gtk_tree_path_get_indices"
This reverts commit eebb16eb1af11c5327dd06b23df82f7528566739.
Was an accidental commit.
Diffstat (limited to 'modules/other')
-rw-r--r-- | modules/other/gail/gailtreeview.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/other/gail/gailtreeview.c b/modules/other/gail/gailtreeview.c index 5118d4494f..a054297838 100644 --- a/modules/other/gail/gailtreeview.c +++ b/modules/other/gail/gailtreeview.c @@ -3257,7 +3257,7 @@ get_row_from_tree_path (GtkTreeView *tree_view, tree_model = gtk_tree_view_get_model (tree_view); if (gtk_tree_model_get_flags (tree_model) & GTK_TREE_MODEL_LIST_ONLY) - row = gtk_tree_path_get_indices (path, NULL)[0]; + row = gtk_tree_path_get_indices (path)[0]; else { root_tree = gtk_tree_path_new_first (); @@ -4360,7 +4360,7 @@ get_index (GtkTreeView *tree_view, if (path) { depth = gtk_tree_path_get_depth (path); - indices = gtk_tree_path_get_indices (path, NULL); + indices = gtk_tree_path_get_indices (path); } if (depth > 1) |