summaryrefslogtreecommitdiff
path: root/desktop/gui.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-07-06 12:39:26 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-07-06 12:39:26 +0000
commit727aa61bb6f283cb81c53629932030a276483140 (patch)
treef413302bc7309fc8a917c83b9ea916ba773ca4a7 /desktop/gui.h
parent865af5f23500b86e4ecf57ff4d08f0eee7bda08c (diff)
downloadnetsurf-727aa61bb6f283cb81c53629932030a276483140.tar.gz
netsurf-727aa61bb6f283cb81c53629932030a276483140.tar.bz2
Pass struct rect to gui_window_update_box(), rather than union content_msg_data.
svn path=/trunk/netsurf/; revision=12574
Diffstat (limited to 'desktop/gui.h')
-rw-r--r--desktop/gui.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/gui.h b/desktop/gui.h
index a3c853633..331bce882 100644
--- a/desktop/gui.h
+++ b/desktop/gui.h
@@ -82,7 +82,7 @@ void gui_window_destroy(struct gui_window *g);
void gui_window_set_title(struct gui_window *g, const char *title);
void gui_window_redraw_window(struct gui_window *g);
void gui_window_update_box(struct gui_window *g,
- const union content_msg_data *data);
+ const struct rect *rect);
bool gui_window_get_scroll(struct gui_window *g, int *sx, int *sy);
void gui_window_set_scroll(struct gui_window *g, int sx, int sy);
void gui_window_scroll_visible(struct gui_window *g, int x0, int y0,