aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-tree-memory.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-06-15 23:09:28 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-06-15 23:09:28 +0800
commite808cf140deb6906445392c71f69ab87699c0040 (patch)
tree4003b97a491c8dc50ec33a59b8a967709f666fab /e-util/e-tree-memory.c
parent137a9cea1b588499c7e46e9e1dba341566dd18a1 (diff)
downloadgsoc2013-evolution-e808cf140deb6906445392c71f69ab87699c0040.tar
gsoc2013-evolution-e808cf140deb6906445392c71f69ab87699c0040.tar.gz
gsoc2013-evolution-e808cf140deb6906445392c71f69ab87699c0040.tar.bz2
gsoc2013-evolution-e808cf140deb6906445392c71f69ab87699c0040.tar.lz
gsoc2013-evolution-e808cf140deb6906445392c71f69ab87699c0040.tar.xz
gsoc2013-evolution-e808cf140deb6906445392c71f69ab87699c0040.tar.zst
gsoc2013-evolution-e808cf140deb6906445392c71f69ab87699c0040.zip
Remove unused e_tree_model_node_get_last_child().
Diffstat (limited to 'e-util/e-tree-memory.c')
-rw-r--r--e-util/e-tree-memory.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/e-util/e-tree-memory.c b/e-util/e-tree-memory.c
index 37f6351111..f15c4bb6c9 100644
--- a/e-util/e-tree-memory.c
+++ b/e-util/e-tree-memory.c
@@ -193,15 +193,6 @@ tree_memory_get_first_child (ETreeModel *etm,
}
static ETreePath
-tree_memory_get_last_child (ETreeModel *etm,
- ETreePath node)
-{
- ETreeMemoryPath *path = node;
-
- return path->last_child;
-}
-
-static ETreePath
tree_memory_get_next (ETreeModel *etm,
ETreePath node)
{
@@ -291,7 +282,6 @@ e_tree_memory_class_init (ETreeMemoryClass *class)
tree_model_class->get_prev = tree_memory_get_prev;
tree_model_class->get_next = tree_memory_get_next;
tree_model_class->get_first_child = tree_memory_get_first_child;
- tree_model_class->get_last_child = tree_memory_get_last_child;
tree_model_class->get_parent = tree_memory_get_parent;
tree_model_class->is_root = tree_memory_is_root;