From af6baf91f004555e5ff38b8d7da64b905b66ba5f Mon Sep 17 00:00:00 2001 From: James Bursa Date: Wed, 17 Sep 2003 12:58:19 +0000 Subject: [project @ 2003-09-17 12:58:19 by bursa] Update plugin_redraw() parameters. svn path=/import/netsurf/; revision=297 --- riscos/plugin.c | 3 ++- riscos/plugin.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/riscos/plugin.c b/riscos/plugin.c index 55304a55f..2d778f0cb 100644 --- a/riscos/plugin.c +++ b/riscos/plugin.c @@ -530,7 +530,8 @@ void plugin_destroy(struct content *c) * Redraw plugin on page. */ void plugin_redraw(struct content *c, long x, long y, - unsigned long width, unsigned long height) + unsigned long width, unsigned long height, + long clip_x0, long clip_y0, long clip_x1, long clip_y1) { struct plugin_list *npl; diff --git a/riscos/plugin.h b/riscos/plugin.h index babc6310e..6f3d8220d 100644 --- a/riscos/plugin.h +++ b/riscos/plugin.h @@ -77,7 +77,8 @@ void plugin_revive(struct content *c, unsigned int width, unsigned int height); void plugin_reformat(struct content *c, unsigned int width, unsigned int height); void plugin_destroy(struct content *c); void plugin_redraw(struct content *c, long x, long y, - unsigned long width, unsigned long height); + unsigned long width, unsigned long height, + long clip_x0, long clip_y0, long clip_x1, long clip_y1); void plugin_add_instance(struct content *c, struct browser_window *bw, struct content *page, struct box *box, struct object_params *params, void **state); -- cgit v1.2.3