From 9f72b5e04639e904e71f55cc2385a6ff30ebdc3b Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Mon, 15 Jul 2013 12:57:40 +0100 Subject: Fix namespace of old global history add function. --- desktop/history_global_core.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'desktop/history_global_core.c') diff --git a/desktop/history_global_core.c b/desktop/history_global_core.c index 2a941e05d..ce438302f 100644 --- a/desktop/history_global_core.c +++ b/desktop/history_global_core.c @@ -90,7 +90,7 @@ static struct node *history_global_find(const char *url) * \param data URL data associated with URL * \return true (for urldb_iterate_entries) */ -static bool global_history_add_internal(nsurl *url, const struct url_data *data) +static bool history_global_add_internal(nsurl *url, const struct url_data *data) { int i, j; struct node *parent = NULL; @@ -281,7 +281,7 @@ bool history_global_initialise(struct tree *tree, const char* folder_icon_name) LOG(("Building history tree")); global_history_initialised = true; - urldb_iterate_entries(global_history_add_internal); + urldb_iterate_entries(history_global_add_internal); global_history_initialised = false; tree_set_node_expanded(global_history_tree, global_history_tree_root, false, true, true); @@ -316,7 +316,7 @@ void history_global_cleanup(void) * * \param url the url to be added */ -void global_history_add(nsurl *url) +void history_global_add(nsurl *url) { const struct url_data *data; @@ -324,7 +324,7 @@ void global_history_add(nsurl *url) if (data == NULL) return; - global_history_add_internal(url, data); + history_global_add_internal(url, data); } -- cgit v1.2.3