summaryrefslogtreecommitdiff
path: root/desktop/history_global_core.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-07-15 12:57:40 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2013-07-15 12:57:40 +0100
commit9f72b5e04639e904e71f55cc2385a6ff30ebdc3b (patch)
tree6fc7fa7de7a27bf49048673cb2d00cbca968136b /desktop/history_global_core.c
parent094ef9a64b1d4c89f116fc09780781985738e5e3 (diff)
downloadnetsurf-9f72b5e04639e904e71f55cc2385a6ff30ebdc3b.tar.gz
netsurf-9f72b5e04639e904e71f55cc2385a6ff30ebdc3b.tar.bz2
Fix namespace of old global history add function.
Diffstat (limited to 'desktop/history_global_core.c')
-rw-r--r--desktop/history_global_core.c8
1 files changed, 4 insertions, 4 deletions
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);
}