X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Foutput%2Fcairo-chart.h;h=68f2978283b93edc63c3507ca05b2d970c3de0bc;hb=81dece3642da9bdcbdec4aa09b0c2008c86d6161;hp=116a8c990110be01d1e21a900874e18823a703c9;hpb=f89d8a893f83ad0cb95819ca60e6f4a718f7d988;p=pspp diff --git a/src/output/cairo-chart.h b/src/output/cairo-chart.h index 116a8c9901..68f2978283 100644 --- a/src/output/cairo-chart.h +++ b/src/output/cairo-chart.h @@ -117,13 +117,12 @@ void xrchart_write_title (cairo_t *, const struct xrchart_geometry *, PRINTF_FORMAT (3, 4); /* Set the scale for the abscissa */ -void xrchart_write_xscale (cairo_t *, struct xrchart_geometry *, - double min, double max); - +bool xrchart_write_xscale (cairo_t *, struct xrchart_geometry *, + double min, double max) WARN_UNUSED_RESULT; /* Set the scale for the ordinate */ -void xrchart_write_yscale (cairo_t *, struct xrchart_geometry *, - double smin, double smax); +bool xrchart_write_yscale (cairo_t *, struct xrchart_geometry *, + double smin, double smax) WARN_UNUSED_RESULT; void xrchart_write_xlabel (cairo_t *, const struct xrchart_geometry *, const char *label) ; @@ -178,9 +177,4 @@ void xrchart_draw_spreadlevel (const struct chart_item *, cairo_t *, void xrchart_draw_scatterplot (const struct chart_item *, cairo_t *, struct xrchart_geometry *); -/* Get the width and height of rendered label text */ -void xrchart_text_extents (cairo_t *cr, const struct xrchart_geometry *geom, - const char *utf8, - double *width, double *height); - #endif /* output/cairo-chart.h */