diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-03-04 08:56:11 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-03-04 08:56:11 +0200 |
commit | c9bb48386bad7d2a40e6958883328145ae439cad (patch) | |
tree | 8576ed314b2d219fdd96b8c1990f16fb70847a54 /canvas | |
parent | 9865440d217d975206a3f91612f0666312bc8fd8 (diff) |
Revert "new loplugin typedefparam"
This reverts commit 9865440d217d975206a3f91612f0666312bc8fd8.
This is not ready to land yet, seems like the latest update
of the logic reveals a bunch more places I need to fix before it can land.
Diffstat (limited to 'canvas')
-rw-r--r-- | canvas/source/opengl/ogl_canvastools.hxx | 4 | ||||
-rw-r--r-- | canvas/source/tools/surface.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/canvas/source/opengl/ogl_canvastools.hxx b/canvas/source/opengl/ogl_canvastools.hxx index 0378626571d5..4382258107eb 100644 --- a/canvas/source/opengl/ogl_canvastools.hxx +++ b/canvas/source/opengl/ogl_canvastools.hxx @@ -26,8 +26,8 @@ namespace oglcanvas void renderComplexPolyPolygon( const ::basegfx::B2DPolyPolygon& rPolyPoly ); void renderPolyPolygon( const ::basegfx::B2DPolyPolygon& rPolyPoly ); void setupState( const ::basegfx::B2DHomMatrix& rTransform, - GLenum eSrcBlend, - GLenum eDstBlend, + unsigned int eSrcBlend, + unsigned int eDstBlend, const com::sun::star::rendering::ARGBColor& rColor ); void renderOSD( const std::vector<double>& rNumbers, double scale ); diff --git a/canvas/source/tools/surface.hxx b/canvas/source/tools/surface.hxx index b941e9d09618..ac45ea1965f1 100644 --- a/canvas/source/tools/surface.hxx +++ b/canvas/source/tools/surface.hxx @@ -87,7 +87,7 @@ namespace canvas bool drawRectangularArea( double fAlpha, const ::basegfx::B2DPoint& rPos, - const ::basegfx::B2DRectangle& rArea, + const ::basegfx::B2DRange& rArea, const ::basegfx::B2DHomMatrix& rTransform ); /** Render the surface content to screen. |