summaryrefslogtreecommitdiff
path: root/desktop/browser.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-07-17 13:00:38 +0000
committerJames Bursa <james@netsurf-browser.org>2004-07-17 13:00:38 +0000
commite4a6e982e599020060d8e43262d53ade0667f439 (patch)
treea3f76f00f0d2154834036e25b4747b322260ce19 /desktop/browser.h
parentb6782d609583900d14d51272075408072f2e501c (diff)
downloadnetsurf-e4a6e982e599020060d8e43262d53ade0667f439.tar.gz
netsurf-e4a6e982e599020060d8e43262d53ade0667f439.tar.bz2
[project @ 2004-07-17 13:00:38 by bursa]
Simplify gui_window structure. Clean up various parts of the gui code. svn path=/import/netsurf/; revision=1092
Diffstat (limited to 'desktop/browser.h')
-rw-r--r--desktop/browser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/desktop/browser.h b/desktop/browser.h
index 4f8443388..1a3427107 100644
--- a/desktop/browser.h
+++ b/desktop/browser.h
@@ -17,11 +17,11 @@
#include <time.h>
#include "netsurf/utils/config.h"
#include "netsurf/content/content.h"
-#include "netsurf/desktop/gui.h"
struct box;
-struct history;
struct form_successful_control;
+struct gui_window;
+struct history;
/** Browser window data. */
struct browser_window
@@ -41,8 +41,8 @@ struct browser_window
/** User parameter for caret_callback. */
void *caret_p;
- /** Platform specific window handle. */
- gui_window *window;
+ /** Platform specific window data. */
+ struct gui_window *window;
/** Busy indicator is active. */
bool throbbing;