summaryrefslogtreecommitdiff
path: root/basegfx/source/polygon/b3dpolygon.cxx
diff options
context:
space:
mode:
authorAlexander Bergmann <myaddons@gmx.de>2012-01-27 12:50:05 +0100
committerMichael Meeks <michael.meeks@suse.com>2012-01-27 21:29:38 +0000
commitb8f24c52c4d3c4ed562fe6c7ae8fa17218a66c1e (patch)
tree0be7c05f0daf67e00263c14cd23fb4bacbafee79 /basegfx/source/polygon/b3dpolygon.cxx
parent6cbf9907898026913ea49abfe6399ba3efa4bb58 (diff)
unusedcode.easy: Removed unused code (basegfx::B3DPolygon, basegfx::B3DPolyPolygon)
Diffstat (limited to 'basegfx/source/polygon/b3dpolygon.cxx')
-rw-r--r--basegfx/source/polygon/b3dpolygon.cxx40
1 files changed, 0 insertions, 40 deletions
diff --git a/basegfx/source/polygon/b3dpolygon.cxx b/basegfx/source/polygon/b3dpolygon.cxx
index 5f62119d6746..5e0ed37c3bb7 100644
--- a/basegfx/source/polygon/b3dpolygon.cxx
+++ b/basegfx/source/polygon/b3dpolygon.cxx
@@ -1547,14 +1547,6 @@ namespace basegfx
{
}
- B3DPolygon::B3DPolygon(const B3DPolygon& rPolygon, sal_uInt32 nIndex, sal_uInt32 nCount) :
- mpPolygon(ImplB3DPolygon(*rPolygon.mpPolygon, nIndex, nCount))
- {
- // TODO(P2): one extra temporary here (cow_wrapper copies
- // given ImplB3DPolygon into its internal impl_t wrapper type)
- OSL_ENSURE(nIndex + nCount > rPolygon.mpPolygon->count(), "B3DPolygon constructor outside range (!)");
- }
-
B3DPolygon::~B3DPolygon()
{
}
@@ -1698,44 +1690,12 @@ namespace basegfx
mpPolygon->clearTextureCoordinates();
}
- void B3DPolygon::insert(sal_uInt32 nIndex, const ::basegfx::B3DPoint& rPoint, sal_uInt32 nCount)
- {
- OSL_ENSURE(nIndex <= mpPolygon->count(), "B3DPolygon Insert outside range (!)");
-
- if(nCount)
- mpPolygon->insert(nIndex, rPoint, nCount);
- }
-
void B3DPolygon::append(const basegfx::B3DPoint& rPoint, sal_uInt32 nCount)
{
if(nCount)
mpPolygon->insert(mpPolygon->count(), rPoint, nCount);
}
- void B3DPolygon::insert(sal_uInt32 nIndex, const B3DPolygon& rPoly, sal_uInt32 nIndex2, sal_uInt32 nCount)
- {
- OSL_ENSURE(nIndex <= mpPolygon->count(), "B3DPolygon Insert outside range (!)");
-
- if(rPoly.count())
- {
- if(!nCount)
- {
- nCount = rPoly.count();
- }
-
- if(0L == nIndex2 && nCount == rPoly.count())
- {
- mpPolygon->insert(nIndex, *rPoly.mpPolygon);
- }
- else
- {
- OSL_ENSURE(nIndex2 + nCount <= rPoly.mpPolygon->count(), "B3DPolygon Insert outside range (!)");
- ImplB3DPolygon aTempPoly(*rPoly.mpPolygon, nIndex2, nCount);
- mpPolygon->insert(nIndex, aTempPoly);
- }
- }
- }
-
void B3DPolygon::append(const B3DPolygon& rPoly, sal_uInt32 nIndex, sal_uInt32 nCount)
{
if(rPoly.count())