summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2008-09-27 20:56:25 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2008-09-27 20:56:25 +0000
commit44d88dcee0fb40a82c7474929c59b8fc34221412 (patch)
tree09797ef8438968d07239d13d4b6a25cf7c6f4b92
parent713d3d365a6b5e4017429ae0151279fb71f89abb (diff)
downloadnetsurf-44d88dcee0fb40a82c7474929c59b8fc34221412.tar.gz
netsurf-44d88dcee0fb40a82c7474929c59b8fc34221412.tar.bz2
Modification for treeview support - missed from previous commit
svn path=/trunk/netsurf/; revision=5448
-rwxr-xr-xamiga/gui.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/amiga/gui.h b/amiga/gui.h
index 89cd74f03..6df70c454 100755
--- a/amiga/gui.h
+++ b/amiga/gui.h
@@ -52,6 +52,7 @@ enum
GID_PASS,
GID_LOGIN,
GID_CANCEL,
+ GID_TREEBROWSER,
GID_LAST
};
@@ -69,7 +70,7 @@ struct gui_download_window {
Object *objects[OID_LAST];
struct Gadget *gadgets[GID_LAST];
struct nsObject *node;
- ULONG pad[4];
+ ULONG pad[5];
BPTR fh;
uint32 size;
uint32 downloaded;
@@ -83,6 +84,7 @@ struct gui_window {
struct browser_window *bw;
bool redraw_required;
int throbber_frame;
+ int c_h;
struct List *tab_bw_list;
struct BitMap *bm;
struct RastPort rp;
@@ -98,7 +100,6 @@ struct gui_window {
ULONG throbber_update_count;
int c_x;
int c_y;
- int c_h;
};
struct RastPort *currp;
@@ -108,4 +109,5 @@ struct Screen *scrn;
STRPTR nsscreentitle;
struct FileRequester *filereq;
struct MsgPort *sport;
+bool win_destroyed;
#endif