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 --- gtk/gtk_plotters.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'gtk/gtk_plotters.c') diff --git a/gtk/gtk_plotters.c b/gtk/gtk_plotters.c index 66f088034..c746483c2 100644 --- a/gtk/gtk_plotters.c +++ b/gtk/gtk_plotters.c @@ -49,7 +49,6 @@ GdkDrawable *current_drawable; GdkGC *current_gc; cairo_t *current_cr; -static bool nsgtk_plot_clg(colour c); static bool nsgtk_plot_rectangle(int x0, int y0, int width, int height, int line_width, colour c, bool dotted, bool dashed); static bool nsgtk_plot_line(int x0, int y0, int x1, int y1, int width, @@ -78,7 +77,6 @@ static float nsgtk_plot_scale = 1.0; struct plotter_table plot; const struct plotter_table nsgtk_plotters = { - .clg = nsgtk_plot_clg, .rectangle = nsgtk_plot_rectangle, .line = nsgtk_plot_line, .polygon = nsgtk_plot_polygon, @@ -93,11 +91,6 @@ const struct plotter_table nsgtk_plotters = { }; -bool nsgtk_plot_clg(colour c) -{ - return true; -} - bool nsgtk_plot_rectangle(int x0, int y0, int width, int height, int line_width, colour c, bool dotted, bool dashed) { -- cgit v1.2.3