diff options
-rw-r--r-- | basegfx/source/polygon/b2dtrapezoid.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/basegfx/source/polygon/b2dtrapezoid.cxx b/basegfx/source/polygon/b2dtrapezoid.cxx index 5357e6255134..b49f3c6cd1de 100644 --- a/basegfx/source/polygon/b2dtrapezoid.cxx +++ b/basegfx/source/polygon/b2dtrapezoid.cxx @@ -420,9 +420,7 @@ namespace basegfx // there were horizontal edges. These can be excluded, but // cuts with other edges need to be solved and added before // ignoring them - sal_uInt32 a(0); - - for(a = 0; a < rTrDeSimpleEdges.size(); a++) + for(sal_uInt32 a = 0; a < rTrDeSimpleEdges.size(); a++) { // get horizontal edge as candidate; prepare its range and fixed Y const TrDeSimpleEdge& rHorEdge = rTrDeSimpleEdges[a]; |