summaryrefslogtreecommitdiff
path: root/drawinglayer/source/attribute/sdrlineattribute.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'drawinglayer/source/attribute/sdrlineattribute.cxx')
-rw-r--r--drawinglayer/source/attribute/sdrlineattribute.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/drawinglayer/source/attribute/sdrlineattribute.cxx b/drawinglayer/source/attribute/sdrlineattribute.cxx
index 1da16445188b..fa6267c1e958 100644
--- a/drawinglayer/source/attribute/sdrlineattribute.cxx
+++ b/drawinglayer/source/attribute/sdrlineattribute.cxx
@@ -35,7 +35,7 @@ namespace drawinglayer
double mfTransparence; // [0.0 .. 1.0], 0.0==no transp.
basegfx::BColor maColor; // color of line
css::drawing::LineCap meCap; // BUTT, ROUND, or SQUARE
- ::std::vector< double > maDotDashArray; // array of double which defines the dot-dash pattern
+ std::vector< double > maDotDashArray; // array of double which defines the dot-dash pattern
double mfFullDotDashLen; // sum of maDotDashArray (for convenience)
ImpSdrLineAttribute(
@@ -44,7 +44,7 @@ namespace drawinglayer
double fTransparence,
const basegfx::BColor& rColor,
css::drawing::LineCap eCap,
- const ::std::vector< double >& rDotDashArray,
+ const std::vector< double >& rDotDashArray,
double fFullDotDashLen)
: meJoin(eJoin),
mfWidth(fWidth),
@@ -73,7 +73,7 @@ namespace drawinglayer
double getTransparence() const { return mfTransparence; }
const basegfx::BColor& getColor() const { return maColor; }
css::drawing::LineCap getCap() const { return meCap; }
- const ::std::vector< double >& getDotDashArray() const { return maDotDashArray; }
+ const std::vector< double >& getDotDashArray() const { return maDotDashArray; }
double getFullDotDashLen() const { return mfFullDotDashLen; }
bool operator==(const ImpSdrLineAttribute& rCandidate) const
@@ -99,7 +99,7 @@ namespace drawinglayer
double fTransparence,
const basegfx::BColor& rColor,
css::drawing::LineCap eCap,
- const ::std::vector< double >& rDotDashArray,
+ const std::vector< double >& rDotDashArray,
double fFullDotDashLen)
: mpSdrLineAttribute(
ImpSdrLineAttribute(
@@ -179,7 +179,7 @@ namespace drawinglayer
return mpSdrLineAttribute->getColor();
}
- const ::std::vector< double >& SdrLineAttribute::getDotDashArray() const
+ const std::vector< double >& SdrLineAttribute::getDotDashArray() const
{
return mpSdrLineAttribute->getDotDashArray();
}