summaryrefslogtreecommitdiff
path: root/amiga/gui.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-09-02 14:17:09 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2013-09-02 14:17:09 +0100
commit5c7ca39ada083e74ba93549efe71c67c906d91bc (patch)
treec9254cc3fe6a0790215523654f66a8f366e97b3e /amiga/gui.c
parent28a948bd32bee735f571ae7f297adb69b289d8ba (diff)
downloadnetsurf-5c7ca39ada083e74ba93549efe71c67c906d91bc.tar.gz
netsurf-5c7ca39ada083e74ba93549efe71c67c906d91bc.tar.bz2
Remove tree_url_node module. Had to disable treeview scanning in amiga and cocoa front ends. Amiga front end very likely broken.
Diffstat (limited to 'amiga/gui.c')
-rw-r--r--amiga/gui.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index f60e47835..d18e41021 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -29,7 +29,6 @@
#include "desktop/searchweb.h"
#include "desktop/textinput.h"
#include "desktop/tree.h"
-#include "desktop/tree_url_node.h"
#include "image/ico.h"
#include "utils/log.h"
#include "utils/messages.h"
@@ -2857,6 +2856,7 @@ void ami_update_buttons(struct gui_window_2 *gwin)
void ami_gui_hotlist_scan_2(struct tree *tree, struct node *root, WORD *gen, int *item,
struct List *speed_button_list, struct gui_window_2 *gwin)
{
+#if 0
struct node *tempnode;
struct node_element *element=NULL;
struct node *node;
@@ -2889,10 +2889,12 @@ void ami_gui_hotlist_scan_2(struct tree *tree, struct node *root, WORD *gen, int
}
*gen = *gen - 1;
+#endif
}
int ami_gui_hotlist_scan(struct tree *tree, struct List *speed_button_list, struct gui_window_2 *gwin)
{
+#if 0
struct node *root = tree_node_get_child(tree_get_root(tree));
struct node *node;
struct node_element *element;
@@ -2910,6 +2912,9 @@ int ami_gui_hotlist_scan(struct tree *tree, struct List *speed_button_list, stru
}
return item;
+#else
+ return 0;
+#endif
}
void ami_gui_hotlist_toolbar_add(struct gui_window_2 *gwin)