diff options
author | Michael Meeks <michael.meeks@suse.com> | 2012-05-31 12:42:13 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-05-31 13:09:03 +0100 |
commit | 5feff80fd2943124568eba07c8cdc465ac201e5d (patch) | |
tree | 3cbf91d93642bf057c101c309b1cadabd5354c2d /basegfx/source/polygon/b2dpolypolygoncutter.cxx | |
parent | 9bd64312c2662adc5016735a03f3844654d40d4f (diff) |
targetted minor size vs. empty reversion
Change-Id: I35aef43b4dd023440509faaa8c73a0e5a45d37a7
Diffstat (limited to 'basegfx/source/polygon/b2dpolypolygoncutter.cxx')
-rw-r--r-- | basegfx/source/polygon/b2dpolypolygoncutter.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/polygon/b2dpolypolygoncutter.cxx b/basegfx/source/polygon/b2dpolypolygoncutter.cxx index 522bc3701556..b5a0868f250b 100644 --- a/basegfx/source/polygon/b2dpolypolygoncutter.cxx +++ b/basegfx/source/polygon/b2dpolypolygoncutter.cxx @@ -903,7 +903,7 @@ namespace basegfx // first step: prepareForPolygonOperation and simple merge of non-overlapping // PolyPolygons for speedup; this is possible for the wanted OR-operation - if(!aInput.empty()) + if(aInput.size()) { std::vector< basegfx::B2DPolyPolygon > aResult; aResult.reserve(aInput.size()); @@ -912,7 +912,7 @@ namespace basegfx { const basegfx::B2DPolyPolygon aCandidate(prepareForPolygonOperation(aInput[a])); - if(!aResult.empty()) + if(aResult.size()) { const B2DRange aCandidateRange(aCandidate.getB2DRange()); bool bCouldMergeSimple(false); |