summaryrefslogtreecommitdiff
path: root/basegfx/source/range/b2dpolyrange.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/source/range/b2dpolyrange.cxx')
-rw-r--r--basegfx/source/range/b2dpolyrange.cxx18
1 files changed, 0 insertions, 18 deletions
diff --git a/basegfx/source/range/b2dpolyrange.cxx b/basegfx/source/range/b2dpolyrange.cxx
index 90a24d876b12..3722ca467bc3 100644
--- a/basegfx/source/range/b2dpolyrange.cxx
+++ b/basegfx/source/range/b2dpolyrange.cxx
@@ -33,18 +33,6 @@ namespace basegfx
{
class ImplB2DPolyRange
{
- void updateBounds()
- {
- maBounds.reset();
- std::for_each(maRanges.begin(),
- maRanges.end(),
- boost::bind(
- (void (B2DRange::*)(const B2DRange&))(
- &B2DRange::expand),
- boost::ref(maBounds),
- _1));
- }
-
public:
ImplB2DPolyRange() :
maBounds(),
@@ -52,12 +40,6 @@ namespace basegfx
maOrient()
{}
- explicit ImplB2DPolyRange( const B2DRange& rRange, B2VectorOrientation eOrient ) :
- maBounds( rRange ),
- maRanges( 1, rRange ),
- maOrient( 1, eOrient )
- {}
-
bool operator==(const ImplB2DPolyRange& rRHS) const
{
return maRanges == rRHS.maRanges && maOrient == rRHS.maOrient;