summaryrefslogtreecommitdiff
path: root/gtk/gtk_print.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/gtk_print.c')
-rw-r--r--gtk/gtk_print.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/gtk/gtk_print.c b/gtk/gtk_print.c
index 7c403d498..cb86f93a8 100644
--- a/gtk/gtk_print.c
+++ b/gtk/gtk_print.c
@@ -45,7 +45,6 @@
#include "utils/log.h"
#include "utils/utils.h"
-static bool nsgtk_print_plot_clg(colour c);
static bool nsgtk_print_plot_rectangle(int x0, int y0, int width, int height,
int line_width, colour c, bool dotted, bool dashed);
static bool nsgtk_print_plot_line(int x0, int y0, int x1, int y1, int width,
@@ -89,7 +88,6 @@ struct content *content_to_print;
static GdkRectangle cliprect;
static const struct plotter_table nsgtk_print_plotters = {
- .clg = nsgtk_print_plot_clg,
.rectangle = nsgtk_print_plot_rectangle,
.line = nsgtk_print_plot_line,
.polygon = nsgtk_print_plot_polygon,
@@ -110,11 +108,6 @@ static const struct printer gtk_printer = {
gtk_print_end
};
-bool nsgtk_print_plot_clg(colour c)
-{
- return true;
-}
-
bool nsgtk_print_plot_rectangle(int x0, int y0, int width, int height,
int line_width, colour c, bool dotted, bool dashed)
{