diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-03 08:46:48 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-03 08:59:39 +0000 |
commit | f4826959c1a5b0e6d2849d4240668b2087582848 (patch) | |
tree | 32589cbf4cbdcd20ff09417f4906f10fc7a4525f /slideshow/source | |
parent | 83721f4365d234b62f9e3517345c8d3fda19f2c6 (diff) |
new loplugin:unusedenumconstants
These are the simple removals, where it is obviously safe,
the more complex ones will come in separate commits
Change-Id: I7211945a6a5576354b60d9c709940ce9b674f308
Reviewed-on: https://gerrit.libreoffice.org/33828
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'slideshow/source')
-rw-r--r-- | slideshow/source/engine/slideview.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/slideshow/source/engine/slideview.cxx b/slideshow/source/engine/slideview.cxx index d215fcfdaa0e..4d13d8b1d05f 100644 --- a/slideshow/source/engine/slideview.cxx +++ b/slideshow/source/engine/slideview.cxx @@ -50,6 +50,7 @@ #include <basegfx/polygon/b2dpolypolygoncutter.hxx> #include <com/sun/star/presentation/XSlideShow.hpp> +#include <com/sun/star/rendering/CompositeOperation.hpp> #include <memory> #include <vector> @@ -180,7 +181,7 @@ void clearRect( ::cppcanvas::CanvasSharedPtr const& pCanvas, if( pPolyPoly ) { - pPolyPoly->setCompositeOp( cppcanvas::CanvasGraphic::SOURCE ); + pPolyPoly->setCompositeOp( css::rendering::CompositeOperation::SOURCE ); pPolyPoly->setRGBAFillColor( 0xFFFFFF00U ); pPolyPoly->draw(); } |