summaryrefslogtreecommitdiff
path: root/riscos/window.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-07-06 16:01:53 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-07-06 16:01:53 +0000
commitb9ff7f39ae30d49010fb9a2c8eecd401b92e88b2 (patch)
tree9bdc41eb6eab2d4e48a0ee094b4c3ad64aee4ed0 /riscos/window.c
parente4a0bebd27f60c3ff102dc12d24e49e0cd5bd270 (diff)
downloadnetsurf-b9ff7f39ae30d49010fb9a2c8eecd401b92e88b2.tar.gz
netsurf-b9ff7f39ae30d49010fb9a2c8eecd401b92e88b2.tar.bz2
Remove pointless content_msg_data.
svn path=/trunk/netsurf/; revision=12585
Diffstat (limited to 'riscos/window.c')
-rw-r--r--riscos/window.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/riscos/window.c b/riscos/window.c
index 35af9bcfd..1fbe48650 100644
--- a/riscos/window.c
+++ b/riscos/window.c
@@ -226,7 +226,6 @@ struct update_box {
int y1;
bool use_buffer;
struct gui_window *g;
- union content_msg_data data;
struct update_box *next;
};
@@ -800,7 +799,6 @@ void gui_window_update_box(struct gui_window *g, const struct rect *rect)
pending_updates = cur;
cur->g = g;
cur->use_buffer = use_buffer;
- cur->data = *data;
}
@@ -4318,7 +4316,6 @@ void ro_gui_window_update_boxes(void)
os_error *error;
struct update_box *cur;
struct gui_window *g;
- const union content_msg_data *data;
struct redraw_context ctx = {
.interactive = true,
.plot = &ro_plotters
@@ -4329,7 +4326,6 @@ void ro_gui_window_update_boxes(void)
if (!g)
continue;
- data = &cur->data;
use_buffer = cur->use_buffer;
update.w = g->window;