diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2014-06-24 21:03:22 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2014-06-25 08:17:45 +0200 |
commit | 3a8d0c0ff5c3b23de3bfb416a5c0e44e5ddc467a (patch) | |
tree | 23c19edb2ee088509267a8290ab431e4d2c01862 /basegfx | |
parent | efd9abb3aedaf361a7fed343cbcb535aef32a839 (diff) |
isFinished() not really used
Change-Id: I5558177fe61adbbff191042f1be22ecb0ce8f11a
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/range/b2drangeclipper.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/basegfx/source/range/b2drangeclipper.cxx b/basegfx/source/range/b2drangeclipper.cxx index 4a1725acb331..860283cf20ca 100644 --- a/basegfx/source/range/b2drangeclipper.cxx +++ b/basegfx/source/range/b2drangeclipper.cxx @@ -258,7 +258,6 @@ namespace basegfx } void setPolygonPoolIndex( std::ptrdiff_t nIdx ) { mnIdx = nIdx; } - bool isFinished() const { return mbIsFinished; } /// Add point to the end of the existing points void append( const B2DPoint& rPoint ) @@ -304,7 +303,7 @@ namespace basegfx B2DPolyPolygon& rRes, bool isFinishingEdge ) { - OSL_PRECOND( !isFinished(), + OSL_PRECOND( !mbIsFinished, "ImplPolygon::intersect(): called on already finished polygon!" ); OSL_PRECOND( !isFinishingEdge || (isFinishingEdge && &rEvent.getRect() == &rActiveEdge.getRect()), |