summaryrefslogtreecommitdiff
path: root/amiga/tree.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2011-10-15 14:09:35 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2011-10-15 14:09:35 +0000
commitad8a96554865092f340e239731d2e44bce1df526 (patch)
treecfb813888ff50d1032933304bdeb936eb64b95c4 /amiga/tree.c
parent62248c06d388d2f16788bdc46d087ae809f77a11 (diff)
downloadnetsurf-ad8a96554865092f340e239731d2e44bce1df526.tar.gz
netsurf-ad8a96554865092f340e239731d2e44bce1df526.tar.bz2
Start to consolidate user file operation into one file
svn path=/trunk/netsurf/; revision=13062
Diffstat (limited to 'amiga/tree.c')
-rwxr-xr-xamiga/tree.c44
1 files changed, 24 insertions, 20 deletions
diff --git a/amiga/tree.c b/amiga/tree.c
index a4006720d..57bf9e6fc 100755
--- a/amiga/tree.c
+++ b/amiga/tree.c
@@ -23,41 +23,45 @@
#include <proto/space.h>
#include <proto/label.h>
#include <proto/scroller.h>
-#include <classes/window.h>
-#include <gadgets/space.h>
-#include <images/label.h>
-#include <gadgets/layout.h>
-#include <gadgets/scroller.h>
-#include <reaction/reaction_macros.h>
-#include "amiga/gui.h"
-#include "content/urldb.h"
#include <proto/exec.h>
-#include <assert.h>
#include <proto/intuition.h>
-#include "amiga/tree.h"
#include <proto/button.h>
-#include <gadgets/button.h>
-#include <string.h>
-#include "utils/messages.h"
#include <proto/bitmap.h>
-#include <images/bitmap.h>
#include <proto/graphics.h>
-#include <intuition/icclass.h>
#include <proto/asl.h>
#include <proto/utility.h>
-#include <libraries/gadtools.h>
#include <proto/dos.h>
+
+#include <libraries/gadtools.h>
+#include <gadgets/button.h>
+#include <classes/window.h>
+#include <gadgets/space.h>
+#include <images/label.h>
+#include <images/bitmap.h>
+#include <gadgets/layout.h>
+#include <gadgets/scroller.h>
+#include <reaction/reaction_macros.h>
+#include <intuition/icclass.h>
+
+#include "amiga/file.h"
+#include "amiga/gui.h"
+#include "amiga/tree.h"
#include "amiga/utf8.h"
-#include "desktop/cookies.h"
-#include "desktop/history_global_core.h"
-#include "desktop/hotlist.h"
-#include "desktop/tree_url_node.h"
#include "amiga/sslcert.h"
#include "amiga/drag.h" /* drag icon stuff */
#include "amiga/theme.h" /* pointers */
#include "amiga/filetype.h"
#include "amiga/options.h"
+#include "content/urldb.h"
+#include "desktop/cookies.h"
+#include "desktop/history_global_core.h"
+#include "desktop/hotlist.h"
+#include "desktop/tree_url_node.h"
#include "utils/utils.h"
+#include "utils/messages.h"
+
+#include <assert.h>
+#include <string.h>
#define AMI_TREE_MENU_ITEMS 21
#define AMI_TREE_MENU_DELETE FULLMENUNUM(1,0,0)