From 1165edf662baa3286ff76df54f2db6819340d0a3 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Wed, 1 Jul 2009 13:53:06 +0000 Subject: remove redundant clg call svn path=/trunk/netsurf/; revision=8240 --- riscos/print.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'riscos/print.c') diff --git a/riscos/print.c b/riscos/print.c index a663b3d1c..8742f40b6 100644 --- a/riscos/print.c +++ b/riscos/print.c @@ -97,7 +97,6 @@ static void print_send_printsave(struct content *c); static bool print_send_printtypeknown(wimp_message *m); static bool print_document(struct gui_window *g, const char *filename); static const char *print_declare_fonts(struct content *content); -static bool print_fonts_plot_clg(colour c); static bool print_fonts_plot_rectangle(int x0, int y0, int width, int height, int line_width, colour c, bool dotted, bool dashed); static bool print_fonts_plot_line(int x0, int y0, int x1, int y1, int width, @@ -126,7 +125,6 @@ static void print_fonts_callback(void *context, /** Plotter for print_declare_fonts(). All the functions do nothing except for * print_fonts_plot_text, which records the fonts used. */ static const struct plotter_table print_fonts_plotters = { - .clg = print_fonts_plot_clg, .rectangle = print_fonts_plot_rectangle, .line = print_fonts_plot_line, .polygon = print_fonts_plot_polygon, @@ -809,24 +807,23 @@ end: } -bool print_fonts_plot_clg(colour c) -{ - return true; -} bool print_fonts_plot_rectangle(int x0, int y0, int width, int height, int line_width, colour c, bool dotted, bool dashed) { return true; } + bool print_fonts_plot_line(int x0, int y0, int x1, int y1, int width, colour c, bool dotted, bool dashed) { return true; } + bool print_fonts_plot_polygon(const int *p, unsigned int n, colour fill) { return true; } + bool print_fonts_plot_fill(int x0, int y0, int x1, int y1, colour c) { return true; -- cgit v1.2.3