diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2017-10-08 12:32:58 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-09 21:05:09 +0200 |
commit | f77524954702f52fe3cd3f40edac539f6a7170dc (patch) | |
tree | 99c885b2ce6eb703d7d1cceab1196e8527154613 /include/cppcanvas/renderer.hxx | |
parent | 6d7191a9bbbae1421edc7d94dccc040f622bc227 (diff) |
remove cppcanvas Color class
which actually does nothing useful. Looks like it was originally
intended to be used to implement color profiles, but since nothing
has happened on that front since it was created, safe to say it never
will. Probably not the right place in the graphics stack to do it
anyhow.
Change-Id: I36990db4036e3b4b2b75261fc430028562a6dbd9
Reviewed-on: https://gerrit.libreoffice.org/43240
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/cppcanvas/renderer.hxx')
-rw-r--r-- | include/cppcanvas/renderer.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/cppcanvas/renderer.hxx b/include/cppcanvas/renderer.hxx index 51b5085ca455..113bda783f20 100644 --- a/include/cppcanvas/renderer.hxx +++ b/include/cppcanvas/renderer.hxx @@ -100,16 +100,16 @@ namespace cppcanvas struct Parameters { /// Optionally forces the fill color attribute for all actions - ::boost::optional< Color::IntSRGBA > maFillColor; + ::boost::optional< IntSRGBA > maFillColor; /// Optionally forces the line color attribute for all actions - ::boost::optional< Color::IntSRGBA > maLineColor; + ::boost::optional< IntSRGBA > maLineColor; /// Optionally forces the text color attribute for all actions - ::boost::optional< Color::IntSRGBA > maTextColor; + ::boost::optional< IntSRGBA > maTextColor; /// Optionally forces the given fontname for all text actions - ::boost::optional< OUString > maFontName; + ::boost::optional< OUString > maFontName; /** Optionally transforms all text output actions with the given matrix (in addition to the overall canvas |