summaryrefslogtreecommitdiff
path: root/drawinglayer/source/primitive2d/textlayoutdevice.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'drawinglayer/source/primitive2d/textlayoutdevice.cxx')
-rw-r--r--drawinglayer/source/primitive2d/textlayoutdevice.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/drawinglayer/source/primitive2d/textlayoutdevice.cxx b/drawinglayer/source/primitive2d/textlayoutdevice.cxx
index 4e28bf616c97..e58aacfa0113 100644
--- a/drawinglayer/source/primitive2d/textlayoutdevice.cxx
+++ b/drawinglayer/source/primitive2d/textlayoutdevice.cxx
@@ -234,7 +234,7 @@ namespace drawinglayer
const OUString& rText,
sal_uInt32 nIndex,
sal_uInt32 nLength,
- const ::std::vector< double >& rDXArray) const
+ const std::vector< double >& rDXArray) const
{
const sal_uInt32 nDXArrayCount(rDXArray.size());
sal_uInt32 nTextLength(nLength);
@@ -333,12 +333,12 @@ namespace drawinglayer
rRectangle, rText, nStyle, rGDIMetaFile);
}
- ::std::vector< double > TextLayouterDevice::getTextArray(
+ std::vector< double > TextLayouterDevice::getTextArray(
const OUString& rText,
sal_uInt32 nIndex,
sal_uInt32 nLength) const
{
- ::std::vector< double > aRetval;
+ std::vector< double > aRetval;
sal_uInt32 nTextLength(nLength);
const sal_uInt32 nStringLength(rText.getLength());
@@ -350,7 +350,7 @@ namespace drawinglayer
if(nTextLength)
{
aRetval.reserve(nTextLength);
- ::std::vector<long> aArray(nTextLength);
+ std::vector<long> aArray(nTextLength);
mrDevice.GetTextArray(rText, &aArray[0], nIndex, nLength);
aRetval.assign(aArray.begin(), aArray.end());
}