diff options
Diffstat (limited to 'cppcanvas')
-rw-r--r-- | cppcanvas/source/mtfrenderer/mtftools.cxx | 6 | ||||
-rw-r--r-- | cppcanvas/source/mtfrenderer/mtftools.hxx | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/cppcanvas/source/mtfrenderer/mtftools.cxx b/cppcanvas/source/mtfrenderer/mtftools.cxx index 458b0bc47d26..52d5d6aa9e6b 100644 --- a/cppcanvas/source/mtfrenderer/mtftools.cxx +++ b/cppcanvas/source/mtfrenderer/mtftools.cxx @@ -313,9 +313,9 @@ namespace cppcanvas // create line actions for text such as underline and // strikeout - ::basegfx::B2DPolyPolygon createTextLinesPolyPolygon( const ::basegfx::B2DPoint rStartPos, - const double& rLineWidth, - const TextLineInfo& rTextLineInfo ) + ::basegfx::B2DPolyPolygon createTextLinesPolyPolygon( const ::basegfx::B2DPoint& rStartPos, + const double& rLineWidth, + const TextLineInfo& rTextLineInfo ) { // fill the polypolygon with all text lines ::basegfx::B2DPolyPolygon aTextLinesPolyPoly; diff --git a/cppcanvas/source/mtfrenderer/mtftools.hxx b/cppcanvas/source/mtfrenderer/mtftools.hxx index 42e1db34128d..4c0bbec6f0e5 100644 --- a/cppcanvas/source/mtfrenderer/mtftools.hxx +++ b/cppcanvas/source/mtfrenderer/mtftools.hxx @@ -196,9 +196,9 @@ namespace cppcanvas const double& rLineWidth, const TextLineInfo& rTextLineInfo ); - ::basegfx::B2DPolyPolygon createTextLinesPolyPolygon( const ::basegfx::B2DPoint rStartPos, - const double& rLineWidth, - const TextLineInfo& rTextLineInfo ); + ::basegfx::B2DPolyPolygon createTextLinesPolyPolygon( const ::basegfx::B2DPoint& rStartPos, + const double& rLineWidth, + const TextLineInfo& rTextLineInfo ); } } |