Remove xr_draw_chart from cairo.h and make static
authorJohn Darrington <john@darrington.wattle.id.au>
Sun, 11 Dec 2011 11:39:42 +0000 (12:39 +0100)
committerJohn Darrington <john@darrington.wattle.id.au>
Sun, 11 Dec 2011 11:39:42 +0000 (12:39 +0100)
The function xr_draw_chart is used only in cairo.c, so it seems there
is little point in having it public.

src/output/cairo.c
src/output/cairo.h

index f74963d682b2f6c3680f0c011ab734b43a51eb94..8d2ee24b2f24afb55ba130b440560bcc993e6840 100644 (file)
@@ -978,6 +978,9 @@ xr_rendering_measure (struct xr_rendering *r, int *w, int *h)
     }
 }
 
+static void xr_draw_chart (const struct chart_item *, cairo_t *,
+                    double x, double y, double width, double height);
+
 /* Draws onto CR at least the region of R that is enclosed in (X,Y)-(X+W,Y+H),
    and possibly some additional parts. */
 void
@@ -1006,7 +1009,7 @@ xr_rendering_draw (struct xr_rendering *r, cairo_t *cr,
                    0, 0, CHART_WIDTH, CHART_HEIGHT);
 }
 
-void
+static void
 xr_draw_chart (const struct chart_item *chart_item, cairo_t *cr,
                double x, double y, double width, double height)
 {
index fd9c7b920472429412880303a32b0de9afc7005d..af317d9c6b95548db207eac02a5a7c9b87e55aa2 100644 (file)
@@ -80,8 +80,6 @@ bool xr_driver_need_new_page (const struct xr_driver *);
 bool xr_driver_is_page_blank (const struct xr_driver *);
 
 /* Render charts with Cairo. */
-void xr_draw_chart (const struct chart_item *, cairo_t *,
-                    double x, double y, double width, double height);
 char *xr_draw_png_chart (const struct chart_item *,
                          const char *file_name_template, int number);