From 895954a1e1de4da43cbba6cbe431983d43dda8c6 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Thu, 29 Aug 2013 14:13:09 +0100 Subject: Don't bother trying to keep old hotlist in sync -- the old one isn't saved when new one is used anyway. --- desktop/hotlist_old.c | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) (limited to 'desktop/hotlist_old.c') diff --git a/desktop/hotlist_old.c b/desktop/hotlist_old.c index d04704dd7..7be949941 100644 --- a/desktop/hotlist_old.c +++ b/desktop/hotlist_old.c @@ -403,6 +403,7 @@ void hotlist_old_add_folder(bool selected) /* Update new hotlist */ if (nsoption_bool(temp_treeview_test) != false) { hotlist_add_folder(NULL, false, 0); + return; } creating_node = true; @@ -460,13 +461,15 @@ void hotlist_old_add_entry(bool selected) if (nsurl_create("http://netsurf-browser.org/", &url) != NSERROR_OK) return; - node = tree_create_URL_node(hotlist_old_tree, parent, url, "Untitled", - hotlist_old_node_callback, NULL); /* Update new hotlist */ if (nsoption_bool(temp_treeview_test) != false) { hotlist_add_entry(url, "New untitled entry", false, 0); + nsurl_unref(url); + return; } + node = tree_create_URL_node(hotlist_old_tree, parent, url, "Untitled", + hotlist_old_node_callback, NULL); nsurl_unref(url); @@ -491,6 +494,13 @@ void hotlist_old_add_page(const char *url) if (nsurl_create(url, &nsurl) != NSERROR_OK) return; + /* Update new hotlist */ + if (nsoption_bool(temp_treeview_test) != false) { + hotlist_add_url(nsurl); + nsurl_unref(nsurl); + return; + } + data = urldb_get_url_data(nsurl); if (data == NULL) return; @@ -500,10 +510,6 @@ void hotlist_old_add_page(const char *url) hotlist_old_node_callback, NULL); tree_update_URL_node(hotlist_old_tree, node, nsurl, data); - /* Update new hotlist */ - if (nsoption_bool(temp_treeview_test) != false) - hotlist_add_url(nsurl); - nsurl_unref(nsurl); } @@ -529,6 +535,8 @@ void hotlist_old_add_page_xy(const char *url, int x, int y) /* Update new hotlist */ if (nsoption_bool(temp_treeview_test) != false) { hotlist_add_entry(nsurl, NULL, true, y); + nsurl_unref(nsurl); + return; } data = urldb_get_url_data(nsurl); -- cgit v1.2.3