Remove unused function.

This commit is contained in:
Michael Drake 2013-06-18 16:04:14 +01:00
parent 1f3265f2a5
commit ec02cf9e4c
2 changed files with 0 additions and 11 deletions

View File

@ -1551,12 +1551,3 @@ nserror treeview_fini(void)
return NSERROR_OK;
}
struct treeview_node * treeview_get_root(struct treeview *tree)
{
assert(tree != NULL);
assert(tree->root != NULL);
return tree->root;
}

View File

@ -242,8 +242,6 @@ void treeview_redraw(struct treeview *tree, int x, int y, struct rect *clip,
void treeview_mouse_action(struct treeview *tree,
browser_mouse_state mouse, int x, int y);
struct treeview_node * treeview_get_root(struct treeview *tree);
/**
* Determine whether treeview has a selection
*