summaryrefslogtreecommitdiff
path: root/drawinglayer/source/primitive2d/metafileprimitive2d.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'drawinglayer/source/primitive2d/metafileprimitive2d.cxx')
-rw-r--r--drawinglayer/source/primitive2d/metafileprimitive2d.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/drawinglayer/source/primitive2d/metafileprimitive2d.cxx b/drawinglayer/source/primitive2d/metafileprimitive2d.cxx
index 6c3cfe91e4ea..f1d728bd5592 100644
--- a/drawinglayer/source/primitive2d/metafileprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/metafileprimitive2d.cxx
@@ -665,7 +665,7 @@ namespace
if(bDashDotUsed)
{
- ::std::vector< double > fDotDashArray;
+ std::vector< double > fDotDashArray;
const double fDashLen(rLineInfo.GetDashLen());
const double fDotLen(rLineInfo.GetDotLen());
const double fDistance(rLineInfo.GetDistance());
@@ -682,7 +682,7 @@ namespace
fDotDashArray.push_back(fDistance);
}
- const double fAccumulated(::std::accumulate(fDotDashArray.begin(), fDotDashArray.end(), 0.0));
+ const double fAccumulated(std::accumulate(fDotDashArray.begin(), fDotDashArray.end(), 0.0));
const drawinglayer::attribute::StrokeAttribute aStrokeAttribute(
fDotDashArray,
fAccumulated);
@@ -1251,7 +1251,7 @@ namespace
const OUString& rText,
sal_uInt16 nTextStart,
sal_uInt16 nTextLength,
- const ::std::vector< double >& rDXArray,
+ const std::vector< double >& rDXArray,
TargetHolder& rTarget,
PropertyHolder& rProperty)
{
@@ -2030,7 +2030,7 @@ namespace
drawinglayer::primitive2d::TextLayouterDevice aTextLayouterDevice;
aTextLayouterDevice.setFont(rPropertyHolders.Current().getFont());
- ::std::vector< double > aTextArray(
+ std::vector< double > aTextArray(
aTextLayouterDevice.getTextArray(
pA->GetText(),
nTextIndex,