Kaydet (Commit) 5a3c49c2 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Remove unused inline functions

Change-Id: Ib9cb71a730a8e1480c897ecab2bc502d419f3029
üst 1ea5e5c4
...@@ -318,11 +318,6 @@ public: ...@@ -318,11 +318,6 @@ public:
} }
} }
sal_uInt32 count() const
{
return maVector.size();
}
bool operator==(const ControlVectorArray2D& rCandidate) const bool operator==(const ControlVectorArray2D& rCandidate) const
{ {
return (maVector == rCandidate.maVector); return (maVector == rCandidate.maVector);
...@@ -874,12 +869,6 @@ public: ...@@ -874,12 +869,6 @@ public:
return (mpControlVector && mpControlVector->isUsed()); return (mpControlVector && mpControlVector->isUsed());
} }
void resetControlVectors(sal_uInt32 nIndex)
{
setPrevControlVector(nIndex, basegfx::B2DVector::getEmptyVector());
setNextControlVector(nIndex, basegfx::B2DVector::getEmptyVector());
}
void resetControlVectors() void resetControlVectors()
{ {
mpBufferedData.reset(); mpBufferedData.reset();
...@@ -1159,28 +1148,6 @@ public: ...@@ -1159,28 +1148,6 @@ public:
maPoints.transform(rMatrix); maPoints.transform(rMatrix);
} }
} }
const basegfx::B2DPoint* begin() const
{
return maPoints.begin();
}
const basegfx::B2DPoint* end() const
{
return maPoints.end();
}
basegfx::B2DPoint* begin()
{
mpBufferedData.reset();
return maPoints.begin();
}
basegfx::B2DPoint* end()
{
mpBufferedData.reset();
return maPoints.end();
}
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment