summaryrefslogtreecommitdiff
path: root/drawinglayer/source/attribute/strokeattribute.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'drawinglayer/source/attribute/strokeattribute.cxx')
-rw-r--r--drawinglayer/source/attribute/strokeattribute.cxx34
1 files changed, 17 insertions, 17 deletions
diff --git a/drawinglayer/source/attribute/strokeattribute.cxx b/drawinglayer/source/attribute/strokeattribute.cxx
index 667f6e1b463e..ca8fe9c9cdd7 100644
--- a/drawinglayer/source/attribute/strokeattribute.cxx
+++ b/drawinglayer/source/attribute/strokeattribute.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -42,16 +42,16 @@ namespace drawinglayer
{
public:
// refcounter
- sal_uInt32 mnRefCount;
+ sal_uInt32 mnRefCount;
// data definitions
- ::std::vector< double > maDotDashArray; // array of double which defines the dot-dash pattern
- double mfFullDotDashLen; // sum of maDotDashArray (for convenience)
+ ::std::vector< double > maDotDashArray; // array of double which defines the dot-dash pattern
+ double mfFullDotDashLen; // sum of maDotDashArray (for convenience)
ImpStrokeAttribute(
const ::std::vector< double >& rDotDashArray,
double fFullDotDashLen)
- : mnRefCount(0),
+ : mnRefCount(0),
maDotDashArray(rDotDashArray),
mfFullDotDashLen(fFullDotDashLen)
{
@@ -59,7 +59,7 @@ namespace drawinglayer
// data read access
const ::std::vector< double >& getDotDashArray() const { return maDotDashArray; }
- double getFullDotDashLen() const
+ double getFullDotDashLen() const
{
if(0.0 == mfFullDotDashLen && maDotDashArray.size())
{
@@ -68,7 +68,7 @@ namespace drawinglayer
const_cast< ImpStrokeAttribute* >(this)->mfFullDotDashLen = fAccumulated;
}
- return mfFullDotDashLen;
+ return mfFullDotDashLen;
}
bool operator==(const ImpStrokeAttribute& rCandidate) const
@@ -76,7 +76,7 @@ namespace drawinglayer
return (getDotDashArray() == rCandidate.getDotDashArray()
&& getFullDotDashLen() == rCandidate.getFullDotDashLen());
}
-
+
static ImpStrokeAttribute* get_global_default()
{
static ImpStrokeAttribute* pDefault = 0;
@@ -98,19 +98,19 @@ namespace drawinglayer
StrokeAttribute::StrokeAttribute(
const ::std::vector< double >& rDotDashArray,
double fFullDotDashLen)
- : mpStrokeAttribute(new ImpStrokeAttribute(
+ : mpStrokeAttribute(new ImpStrokeAttribute(
rDotDashArray, fFullDotDashLen))
{
}
StrokeAttribute::StrokeAttribute()
- : mpStrokeAttribute(ImpStrokeAttribute::get_global_default())
+ : mpStrokeAttribute(ImpStrokeAttribute::get_global_default())
{
mpStrokeAttribute->mnRefCount++;
}
StrokeAttribute::StrokeAttribute(const StrokeAttribute& rCandidate)
- : mpStrokeAttribute(rCandidate.mpStrokeAttribute)
+ : mpStrokeAttribute(rCandidate.mpStrokeAttribute)
{
mpStrokeAttribute->mnRefCount++;
}
@@ -144,7 +144,7 @@ namespace drawinglayer
{
delete mpStrokeAttribute;
}
-
+
mpStrokeAttribute = rCandidate.mpStrokeAttribute;
mpStrokeAttribute->mnRefCount++;
}
@@ -167,14 +167,14 @@ namespace drawinglayer
return (*rCandidate.mpStrokeAttribute == *mpStrokeAttribute);
}
- const ::std::vector< double >& StrokeAttribute::getDotDashArray() const
- {
- return mpStrokeAttribute->getDotDashArray();
+ const ::std::vector< double >& StrokeAttribute::getDotDashArray() const
+ {
+ return mpStrokeAttribute->getDotDashArray();
}
double StrokeAttribute::getFullDotDashLen() const
- {
- return mpStrokeAttribute->getFullDotDashLen();
+ {
+ return mpStrokeAttribute->getFullDotDashLen();
}
} // end of namespace attribute
} // end of namespace drawinglayer