From 59641def822ba66ed9bf3ae73ed53dffe45a992c Mon Sep 17 00:00:00 2001 From: Rob Kendrick Date: Mon, 7 Apr 2008 11:15:09 +0000 Subject: const fixes in plotters and history core svn path=/trunk/netsurf/; revision=4083 --- desktop/plotters.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'desktop/plotters.h') diff --git a/desktop/plotters.h b/desktop/plotters.h index c0515e31b..79eac8170 100644 --- a/desktop/plotters.h +++ b/desktop/plotters.h @@ -40,8 +40,8 @@ struct plotter_table { bool (*polygon)(int *p, unsigned int n, colour fill); bool (*fill)(int x0, int y0, int x1, int y1, colour c); bool (*clip)(int x0, int y0, int x1, int y1); - bool (*text)(int x, int y, struct css_style *style, const char *text, - size_t length, colour bg, colour c); + bool (*text)(int x, int y, const struct css_style *style, + const char *text, size_t length, colour bg, colour c); bool (*disc)(int x, int y, int radius, colour c, bool filled); bool (*arc)(int x, int y, int radius, int angle1, int angle2, colour c); -- cgit v1.2.3