summaryrefslogtreecommitdiff
path: root/desktop/browser.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-03-03 22:40:39 +0000
committerJames Bursa <james@netsurf-browser.org>2003-03-03 22:40:39 +0000
commit64e1781eb4c0d007801ea894cb3c0967a8aecbbd (patch)
tree97dbfd9135534786b61d59bb78f3dc04a0b1286b /desktop/browser.h
parent817421cb0f87df2ef21dfbad65b84c21da098071 (diff)
downloadnetsurf-64e1781eb4c0d007801ea894cb3c0967a8aecbbd.tar.gz
netsurf-64e1781eb4c0d007801ea894cb3c0967a8aecbbd.tar.bz2
[project @ 2003-03-03 22:40:39 by bursa]
Fix many browser warnings. svn path=/import/netsurf/; revision=103
Diffstat (limited to 'desktop/browser.h')
-rw-r--r--desktop/browser.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/desktop/browser.h b/desktop/browser.h
index 00cb937a8..25fc6f6ed 100644
--- a/desktop/browser.h
+++ b/desktop/browser.h
@@ -1,5 +1,5 @@
/**
- * $Id: browser.h,v 1.9 2003/02/28 11:49:13 bursa Exp $
+ * $Id: browser.h,v 1.10 2003/03/03 22:40:39 bursa Exp $
*/
#ifndef _NETSURF_DESKTOP_BROWSER_H_
@@ -43,8 +43,8 @@ void history_remember(struct history* current, char* desc, char* url);
struct browser_window
{
- int format_width;
- int format_height;
+ unsigned long format_width;
+ unsigned long format_height;
struct { int mult; int div; } scale;
struct content* current_content;
@@ -54,7 +54,6 @@ struct browser_window
char* url;
browser_window_flags flags;
- char* title;
gui_window* window;
int throbbing;
@@ -71,8 +70,8 @@ struct browser_action
} type;
union {
struct {
- int x;
- int y;
+ unsigned long x;
+ unsigned long y;
action_buttons buttons;
} mouse;
struct {