summaryrefslogtreecommitdiff
path: root/basegfx/source/polygon/b2dpolygon.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-04-01 09:21:36 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-04-01 09:21:36 +0200
commit5a3c49c2a158376a7469fe96b695689eb92e4c0d (patch)
tree4af5e78fb447eae7ba404737dac342909f54866f /basegfx/source/polygon/b2dpolygon.cxx
parent1ea5e5c4a98fc7512de0fa6db60f24d50116ecb5 (diff)
Remove unused inline functions
Change-Id: Ib9cb71a730a8e1480c897ecab2bc502d419f3029
Diffstat (limited to 'basegfx/source/polygon/b2dpolygon.cxx')
-rw-r--r--basegfx/source/polygon/b2dpolygon.cxx33
1 files changed, 0 insertions, 33 deletions
diff --git a/basegfx/source/polygon/b2dpolygon.cxx b/basegfx/source/polygon/b2dpolygon.cxx
index 4aa2ad492857..34eddd72bf2a 100644
--- a/basegfx/source/polygon/b2dpolygon.cxx
+++ b/basegfx/source/polygon/b2dpolygon.cxx
@@ -318,11 +318,6 @@ public:
}
}
- sal_uInt32 count() const
- {
- return maVector.size();
- }
-
bool operator==(const ControlVectorArray2D& rCandidate) const
{
return (maVector == rCandidate.maVector);
@@ -874,12 +869,6 @@ public:
return (mpControlVector && mpControlVector->isUsed());
}
- void resetControlVectors(sal_uInt32 nIndex)
- {
- setPrevControlVector(nIndex, basegfx::B2DVector::getEmptyVector());
- setNextControlVector(nIndex, basegfx::B2DVector::getEmptyVector());
- }
-
void resetControlVectors()
{
mpBufferedData.reset();
@@ -1159,28 +1148,6 @@ public:
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();
- }
};