summaryrefslogtreecommitdiff
path: root/drawinglayer/source/attribute/sdrlightingattribute3d.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'drawinglayer/source/attribute/sdrlightingattribute3d.cxx')
-rw-r--r--drawinglayer/source/attribute/sdrlightingattribute3d.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/drawinglayer/source/attribute/sdrlightingattribute3d.cxx b/drawinglayer/source/attribute/sdrlightingattribute3d.cxx
index f2705e998a2a..c2f44f26dff6 100644
--- a/drawinglayer/source/attribute/sdrlightingattribute3d.cxx
+++ b/drawinglayer/source/attribute/sdrlightingattribute3d.cxx
@@ -33,11 +33,11 @@ namespace drawinglayer
public:
// 3D light attribute definitions
basegfx::BColor maAmbientLight;
- ::std::vector< Sdr3DLightAttribute > maLightVector;
+ std::vector< Sdr3DLightAttribute > maLightVector;
ImpSdrLightingAttribute(
const basegfx::BColor& rAmbientLight,
- const ::std::vector< Sdr3DLightAttribute >& rLightVector)
+ const std::vector< Sdr3DLightAttribute >& rLightVector)
: maAmbientLight(rAmbientLight),
maLightVector(rLightVector)
{
@@ -51,7 +51,7 @@ namespace drawinglayer
// data read access
const basegfx::BColor& getAmbientLight() const { return maAmbientLight; }
- const ::std::vector< Sdr3DLightAttribute >& getLightVector() const { return maLightVector; }
+ const std::vector< Sdr3DLightAttribute >& getLightVector() const { return maLightVector; }
bool operator==(const ImpSdrLightingAttribute& rCandidate) const
{
@@ -68,7 +68,7 @@ namespace drawinglayer
SdrLightingAttribute::SdrLightingAttribute(
const basegfx::BColor& rAmbientLight,
- const ::std::vector< Sdr3DLightAttribute >& rLightVector)
+ const std::vector< Sdr3DLightAttribute >& rLightVector)
: mpSdrLightingAttribute(ImpSdrLightingAttribute(
rAmbientLight, rLightVector))
{
@@ -119,7 +119,7 @@ namespace drawinglayer
return rCandidate.mpSdrLightingAttribute == mpSdrLightingAttribute;
}
- const ::std::vector< Sdr3DLightAttribute >& SdrLightingAttribute::getLightVector() const
+ const std::vector< Sdr3DLightAttribute >& SdrLightingAttribute::getLightVector() const
{
return mpSdrLightingAttribute->getLightVector();
}