diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-20 11:56:20 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-11-20 13:08:33 +0000 |
commit | ccf9d889fd3b21473e201b0d25a714d10474bc96 (patch) | |
tree | 761525ddf0af8d9c61e98d65c2f3b01c843a7e45 /basegfx | |
parent | 0f5d0aaed33d68cb6fe52d693d351dda79b990bc (diff) |
loplugin:unusedfields in basegfx
Change-Id: Ibf7455fd20522ad52031089d2700533efc56c395
Reviewed-on: https://gerrit.libreoffice.org/20077
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/range/b2drangeclipper.cxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/basegfx/source/range/b2drangeclipper.cxx b/basegfx/source/range/b2drangeclipper.cxx index 1e4bb4f4d6b7..882b4a88cfc2 100644 --- a/basegfx/source/range/b2drangeclipper.cxx +++ b/basegfx/source/range/b2drangeclipper.cxx @@ -92,12 +92,10 @@ namespace basegfx ActiveEdge( const B2DRectangle& rRect, const double& fInvariantCoord, std::ptrdiff_t nPolyIdx, - EdgeType eEdgeType, EdgeDirection eEdgeDirection ) : mfInvariantCoord(fInvariantCoord), mpAssociatedRect( &rRect ), mnPolygonIdx( nPolyIdx ), - meEdgeType( eEdgeType ), meEdgeDirection( eEdgeDirection ) {} @@ -135,9 +133,6 @@ namespace basegfx */ std::ptrdiff_t mnPolygonIdx; - /// 'upper' or 'lower' edge of original rectangle. - EdgeType meEdgeType; - /// 'left' or 'right' EdgeDirection meEdgeDirection; }; @@ -640,7 +635,6 @@ namespace basegfx rRect, rRect.getMinY(), bGoesDown ? nIdxPolygon : -1, - ActiveEdge::UPPER, bGoesDown ? ActiveEdge::PROCEED_LEFT : ActiveEdge::PROCEED_RIGHT) ); // lower edge aNewEdges.push_back( @@ -648,7 +642,6 @@ namespace basegfx rRect, rRect.getMaxY(), bGoesDown ? -1 : nIdxPolygon, - ActiveEdge::LOWER, bGoesDown ? ActiveEdge::PROCEED_RIGHT : ActiveEdge::PROCEED_LEFT ) ); // furthermore, have to respect a special tie-breaking |