summaryrefslogtreecommitdiff
path: root/riscos/save_draw.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2005-03-20 20:39:22 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2005-03-20 20:39:22 +0000
commit062e6a5bae5a7dc0d853a2b99c59cfe3c5b087f1 (patch)
tree0d9bb95525a6f58a36ffbdea30123f1f09c75ff4 /riscos/save_draw.c
parent452629ab8507a79d9406fa14633ef5fed3f01d24 (diff)
downloadnetsurf-062e6a5bae5a7dc0d853a2b99c59cfe3c5b087f1.tar.gz
netsurf-062e6a5bae5a7dc0d853a2b99c59cfe3c5b087f1.tar.bz2
[project @ 2005-03-20 20:39:22 by jmb]
Fix draw_plot_rectangle API svn path=/import/netsurf/; revision=1557
Diffstat (limited to 'riscos/save_draw.c')
-rw-r--r--riscos/save_draw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/riscos/save_draw.c b/riscos/save_draw.c
index e8b4dd34a..896f5cacd 100644
--- a/riscos/save_draw.c
+++ b/riscos/save_draw.c
@@ -80,7 +80,7 @@ static bool drawbuf_group_end(void);
static bool add_options(void);
static bool draw_plot_clg(colour c);
static bool draw_plot_rectangle(int x0, int y0, int width, int height,
- colour c, bool dotted);
+ int line_width, colour c, bool dotted, bool dashed);
static bool draw_plot_line(int x0, int y0, int x1, int y1, int width,
colour c, bool dotted, bool dashed);
static bool draw_plot_polygon(int *p, unsigned int n, colour fill);
@@ -550,7 +550,7 @@ bool draw_plot_clg(colour c)
* \return true on success, false otherwise.
*/
bool draw_plot_rectangle(int x0, int y0, int width, int height,
- colour c, bool dotted)
+ int line_width, colour c, bool dotted, bool dashed)
{
drawfile_object *dro;
drawfile_path *dp;