aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-tree.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-06-15 22:57:27 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-06-15 23:06:45 +0800
commit137a9cea1b588499c7e46e9e1dba341566dd18a1 (patch)
treea207f432e047478e02d6a2c0335ec47cb69c0428 /e-util/e-tree.c
parent4e394d89cf79998592a6436c790fd8bd42ffbb44 (diff)
downloadgsoc2013-evolution-137a9cea1b588499c7e46e9e1dba341566dd18a1.tar
gsoc2013-evolution-137a9cea1b588499c7e46e9e1dba341566dd18a1.tar.gz
gsoc2013-evolution-137a9cea1b588499c7e46e9e1dba341566dd18a1.tar.bz2
gsoc2013-evolution-137a9cea1b588499c7e46e9e1dba341566dd18a1.tar.lz
gsoc2013-evolution-137a9cea1b588499c7e46e9e1dba341566dd18a1.tar.xz
gsoc2013-evolution-137a9cea1b588499c7e46e9e1dba341566dd18a1.tar.zst
gsoc2013-evolution-137a9cea1b588499c7e46e9e1dba341566dd18a1.zip
e_tree_model_node_find: Remove "forward_direction" parameter.
It's always TRUE.
Diffstat (limited to 'e-util/e-tree.c')
-rw-r--r--e-util/e-tree.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/e-util/e-tree.c b/e-util/e-tree.c
index 5a6b52452e..4ea3a4ae43 100644
--- a/e-util/e-tree.c
+++ b/e-util/e-tree.c
@@ -557,13 +557,11 @@ et_search_search (ETableSearch *search,
}
found = e_tree_model_node_find (
- et->priv->model, cursor, NULL,
- E_TREE_FIND_NEXT_FORWARD,
- search_search_callback, &cb_data);
+ et->priv->model, cursor, NULL,
+ search_search_callback, &cb_data);
if (found == NULL)
found = e_tree_model_node_find (
et->priv->model, NULL, cursor,
- E_TREE_FIND_NEXT_FORWARD,
search_search_callback, &cb_data);
if (found && found != cursor) {