summaryrefslogtreecommitdiff
path: root/drawinglayer/source/primitive2d/textprimitive2d.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'drawinglayer/source/primitive2d/textprimitive2d.cxx')
-rw-r--r--drawinglayer/source/primitive2d/textprimitive2d.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/drawinglayer/source/primitive2d/textprimitive2d.cxx b/drawinglayer/source/primitive2d/textprimitive2d.cxx
index bd9fc0ba30ad..ba3ea7a0a60e 100644
--- a/drawinglayer/source/primitive2d/textprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/textprimitive2d.cxx
@@ -124,7 +124,7 @@ namespace drawinglayer
// outlines already aligned to given, but wrong DXArray
if(getDXArray().size() && !basegfx::fTools::equal(aScale.getX(), 1.0))
{
- ::std::vector< double > aScaledDXArray = getDXArray();
+ std::vector< double > aScaledDXArray = getDXArray();
const double fDXArrayScale(1.0 / aScale.getX());
for(double & a : aScaledDXArray)
@@ -219,7 +219,7 @@ namespace drawinglayer
const OUString& rText,
sal_Int32 nTextPosition,
sal_Int32 nTextLength,
- const ::std::vector< double >& rDXArray,
+ const std::vector< double >& rDXArray,
const attribute::FontAttribute& rFontAttribute,
const css::lang::Locale& rLocale,
const basegfx::BColor& rFontColor,