summaryrefslogtreecommitdiff
path: root/amiga/context_menu.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-08-13 12:41:04 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2013-08-13 12:41:04 +0100
commiteaae7169898fa026ae9da5f8a5dde4bc4bbbceb1 (patch)
treea86c7e5069bd5ef0f532b5fd9fd5b033a2787a13 /amiga/context_menu.c
parentf0b8594c46e9149af6a372ecd09e5ad1ba53fe0b (diff)
downloadnetsurf-eaae7169898fa026ae9da5f8a5dde4bc4bbbceb1.tar.gz
netsurf-eaae7169898fa026ae9da5f8a5dde4bc4bbbceb1.tar.bz2
Move old hotlist out of the way.
Diffstat (limited to 'amiga/context_menu.c')
-rw-r--r--amiga/context_menu.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/amiga/context_menu.c b/amiga/context_menu.c
index be52865fd..e7bbe6237 100644
--- a/amiga/context_menu.c
+++ b/amiga/context_menu.c
@@ -41,7 +41,7 @@
#include "amiga/utf8.h"
#include "desktop/browser_private.h"
#include "desktop/local_history.h"
-#include "desktop/hotlist.h"
+#include "desktop/hotlist_old.h"
#include "desktop/searchweb.h"
#include "desktop/textinput.h"
#include "desktop/tree_url_node.h"
@@ -768,7 +768,7 @@ static uint32 ami_context_menu_hook(struct Hook *hook,Object *item,APTR reserved
case CMID_URLHOTLIST:
case CMID_PAGEHOTLIST:
- hotlist_add_page(userdata);
+ hotlist_old_add_page(userdata);
break;
case CMID_FRAMECOPYURL:
@@ -1216,7 +1216,7 @@ static uint32 ami_context_menu_hook_tree(struct Hook *hook, Object *item, APTR r
break;
case CMID_TREE_EDITFOLDER:
- hotlist_edit_selected();
+ hotlist_old_edit_selected();
break;
case CMID_TREE_EDITTITLE:
@@ -1228,23 +1228,23 @@ static uint32 ami_context_menu_hook_tree(struct Hook *hook, Object *item, APTR r
break;
case CMID_TREE_NEWFOLDER:
- hotlist_add_folder(true);
+ hotlist_old_add_folder(true);
break;
case CMID_TREE_NEWITEM:
- hotlist_add_entry(true);
+ hotlist_old_add_entry(true);
break;
case CMID_TREE_SETDEFAULT:
- hotlist_set_default_folder(false);
+ hotlist_old_set_default_folder(false);
break;
case CMID_TREE_CLEARDEFAULT:
- hotlist_set_default_folder(true);
+ hotlist_old_set_default_folder(true);
break;
case CMID_TREE_ADDHOTLIST:
- hotlist_add_page(tree_url_node_get_url(userdata));
+ hotlist_old_add_page(tree_url_node_get_url(userdata));
break;
case CMID_TREE_DELETE: