From b09deb075319c1c19f91e3a6f64429b61682ebf8 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 28 Jul 2017 11:47:51 +0200 Subject: loplugin:constparams handle constructors had to change the structure of the plugin considerably, was too messy to structure it to do the calculations on a per-function basis Change-Id: I4edee7735f726101105c607368124a08dba21086 Reviewed-on: https://gerrit.libreoffice.org/40516 Tested-by: Jenkins Reviewed-by: Noel Grandin --- cppcanvas/source/mtfrenderer/textaction.cxx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'cppcanvas') diff --git a/cppcanvas/source/mtfrenderer/textaction.cxx b/cppcanvas/source/mtfrenderer/textaction.cxx index 312550eac166..cdf90ef71eac 100644 --- a/cppcanvas/source/mtfrenderer/textaction.cxx +++ b/cppcanvas/source/mtfrenderer/textaction.cxx @@ -769,7 +769,7 @@ namespace cppcanvas const OUString& rText, sal_Int32 nStartPos, sal_Int32 nLen, - VirtualDevice& rVDev, + VirtualDevice const & rVDev, const CanvasSharedPtr& rCanvas, const OutDevState& rState ); @@ -781,7 +781,7 @@ namespace cppcanvas const OUString& rText, sal_Int32 nStartPos, sal_Int32 nLen, - VirtualDevice& rVDev, + VirtualDevice const & rVDev, const CanvasSharedPtr& rCanvas, const OutDevState& rState, const ::basegfx::B2DHomMatrix& rTextTransform ); @@ -833,7 +833,7 @@ namespace cppcanvas const OUString& rText, sal_Int32 nStartPos, sal_Int32 nLen, - VirtualDevice& rVDev, + VirtualDevice const & rVDev, const CanvasSharedPtr& rCanvas, const OutDevState& rState ) : mxFont( rState.xFont ), @@ -872,7 +872,7 @@ namespace cppcanvas const OUString& rText, sal_Int32 nStartPos, sal_Int32 nLen, - VirtualDevice& rVDev, + VirtualDevice const & rVDev, const CanvasSharedPtr& rCanvas, const OutDevState& rState, const ::basegfx::B2DHomMatrix& rTextTransform ) : @@ -1190,7 +1190,7 @@ namespace cppcanvas sal_Int32 nStartPos, sal_Int32 nLen, const uno::Sequence< double >& rOffsets, - VirtualDevice& rVDev, + VirtualDevice const & rVDev, const CanvasSharedPtr& rCanvas, const OutDevState& rState ); EffectTextArrayAction( const ::basegfx::B2DPoint& rStartPoint, @@ -1202,7 +1202,7 @@ namespace cppcanvas sal_Int32 nStartPos, sal_Int32 nLen, const uno::Sequence< double >& rOffsets, - VirtualDevice& rVDev, + VirtualDevice const & rVDev, const CanvasSharedPtr& rCanvas, const OutDevState& rState, const ::basegfx::B2DHomMatrix& rTextTransform ); @@ -1252,7 +1252,7 @@ namespace cppcanvas sal_Int32 nStartPos, sal_Int32 nLen, const uno::Sequence< double >& rOffsets, - VirtualDevice& rVDev, + VirtualDevice const & rVDev, const CanvasSharedPtr& rCanvas, const OutDevState& rState ) : mxTextLayout(), @@ -1292,7 +1292,7 @@ namespace cppcanvas sal_Int32 nStartPos, sal_Int32 nLen, const uno::Sequence< double >& rOffsets, - VirtualDevice& rVDev, + VirtualDevice const & rVDev, const CanvasSharedPtr& rCanvas, const OutDevState& rState, const ::basegfx::B2DHomMatrix& rTextTransform ) : @@ -1527,7 +1527,7 @@ namespace cppcanvas const ::basegfx::B2DRectangle& rOutlineBounds, const uno::Reference< rendering::XPolyPolygon2D >& rTextPoly, const uno::Sequence< double >& rOffsets, - VirtualDevice& rVDev, + VirtualDevice const & rVDev, const CanvasSharedPtr& rCanvas, const OutDevState& rState ); OutlineAction( const ::basegfx::B2DPoint& rStartPoint, @@ -1538,7 +1538,7 @@ namespace cppcanvas const ::basegfx::B2DRectangle& rOutlineBounds, const uno::Reference< rendering::XPolyPolygon2D >& rTextPoly, const uno::Sequence< double >& rOffsets, - VirtualDevice& rVDev, + VirtualDevice const & rVDev, const CanvasSharedPtr& rCanvas, const OutDevState& rState, const ::basegfx::B2DHomMatrix& rTextTransform ); @@ -1604,7 +1604,7 @@ namespace cppcanvas const ::basegfx::B2DRectangle& rOutlineBounds, const uno::Reference< rendering::XPolyPolygon2D >& rTextPoly, const uno::Sequence< double >& rOffsets, - VirtualDevice& rVDev, + VirtualDevice const & rVDev, const CanvasSharedPtr& rCanvas, const OutDevState& rState ) : mxTextPoly( rTextPoly ), @@ -1645,7 +1645,7 @@ namespace cppcanvas const ::basegfx::B2DRectangle& rOutlineBounds, const uno::Reference< rendering::XPolyPolygon2D >& rTextPoly, const uno::Sequence< double >& rOffsets, - VirtualDevice& rVDev, + VirtualDevice const & rVDev, const CanvasSharedPtr& rCanvas, const OutDevState& rState, const ::basegfx::B2DHomMatrix& rTextTransform ) : -- cgit