summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-07-06 12:42:17 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-07-06 12:42:17 +0000
commited8778ddb3bdc1dffd58f69d378ebf3d72cd5723 (patch)
tree5a9c9147989964c8fef4f5622c5b8f9aa7f67627 /amiga
parent727aa61bb6f283cb81c53629932030a276483140 (diff)
downloadnetsurf-ed8778ddb3bdc1dffd58f69d378ebf3d72cd5723.tar.gz
netsurf-ed8778ddb3bdc1dffd58f69d378ebf3d72cd5723.tar.bz2
Fix up Amiga for r12574 API change.
svn path=/trunk/netsurf/; revision=12575
Diffstat (limited to 'amiga')
-rwxr-xr-xamiga/gui.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index 71410bcfb..b4506f3d6 100755
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -3303,17 +3303,15 @@ void gui_window_redraw_window(struct gui_window *g)
g->shared->redraw_required = true;
}
-void gui_window_update_box(struct gui_window *g,
- const union content_msg_data *data)
+void gui_window_update_box(struct gui_window *g, const struct rect *rect)
{
ULONG sx,sy;
if(!g) return;
ami_do_redraw_limits(g, g->shared->bw,
- data->redraw.x,data->redraw.y,
- data->redraw.width+data->redraw.x,
- data->redraw.height+data->redraw.y);
+ rect->x0, rect->y0,
+ rect->x1, rect->y1);
}
void ami_do_redraw(struct gui_window_2 *g)