diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-01-17 09:00:04 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-01-17 11:33:16 +0000 |
commit | bcc25a6d8ab411fe62f935cbb302eb1924274ae8 (patch) | |
tree | 2e959c77886cb74f772aff0eee8ebff64ba521e0 /basegfx/source/range | |
parent | bd8851e3193692357165bf065de6e9a0b9fd726c (diff) |
callcatcher: remove recently unused code
Diffstat (limited to 'basegfx/source/range')
-rw-r--r-- | basegfx/source/range/b2dpolyrange.cxx | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/basegfx/source/range/b2dpolyrange.cxx b/basegfx/source/range/b2dpolyrange.cxx index 6046f488150d..0cd3abde3f22 100644 --- a/basegfx/source/range/b2dpolyrange.cxx +++ b/basegfx/source/range/b2dpolyrange.cxx @@ -90,17 +90,6 @@ namespace basegfx maBounds.expand(rRange); } - void appendPolyRange(const ImplB2DPolyRange& rPolyRange) - { - maRanges.insert(maRanges.end(), - rPolyRange.maRanges.begin(), - rPolyRange.maRanges.end()); - maOrient.insert(maOrient.end(), - rPolyRange.maOrient.begin(), - rPolyRange.maOrient.end()); - updateBounds(); - } - void clear() { std::vector<B2DRange> aTmpRanges; @@ -181,11 +170,6 @@ namespace basegfx mpImpl->appendElement(rRange, eOrient, nCount ); } - void B2DPolyRange::appendPolyRange(const B2DPolyRange& rRange) - { - mpImpl->appendPolyRange(*rRange.mpImpl); - } - void B2DPolyRange::clear() { mpImpl->clear(); |