summaryrefslogtreecommitdiff
path: root/atari
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 /atari
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 'atari')
-rwxr-xr-xatari/history.c1
-rwxr-xr-xatari/hotlist.c1
-rwxr-xr-xatari/treeview.c21
3 files changed, 0 insertions, 23 deletions
diff --git a/atari/history.c b/atari/history.c
index 5501b9091..fd4e8f5d1 100755
--- a/atari/history.c
+++ b/atari/history.c
@@ -24,7 +24,6 @@
#include "desktop/browser.h"
#include "utils/nsoption.h"
#include "desktop/tree.h"
-#include "desktop/tree_url_node.h"
#include "desktop/gui.h"
#include "desktop/history_global_core.h"
#include "desktop/browser.h"
diff --git a/atari/hotlist.c b/atari/hotlist.c
index 6c80db39c..9a818a384 100755
--- a/atari/hotlist.c
+++ b/atari/hotlist.c
@@ -30,7 +30,6 @@
#include "utils/nsoption.h"
#include "desktop/hotlist_old.h"
#include "desktop/tree.h"
-#include "desktop/tree_url_node.h"
#include "desktop/gui.h"
#include "utils/log.h"
#include "utils/messages.h"
diff --git a/atari/treeview.c b/atari/treeview.c
index 261b2eee4..97fe8a934 100755
--- a/atari/treeview.c
+++ b/atari/treeview.c
@@ -27,7 +27,6 @@
#include "desktop/plotters.h"
#include "desktop/textinput.h"
#include "desktop/tree.h"
-#include "desktop/tree_url_node.h"
#include "desktop/textinput.h"
#include "utils/log.h"
#include "utils/messages.h"
@@ -527,23 +526,3 @@ void atari_treeview_get_dimensions(int *width, int *height,
*height = work.g_h;
}
}
-
-
-/**
- * Translates a content_type to the name of a respective icon
- *
- * \param content_type content type
- * \param buffer buffer for the icon name
- */
-void tree_icon_name_from_content_type(char *buffer, content_type type)
-{
- switch (type) {
- case CONTENT_HTML:
- case CONTENT_TEXTPLAIN:
- case CONTENT_CSS:
- case CONTENT_IMAGE:
- default:
- strcpy( buffer, "content.png" );
- break;
- }
-}