diff options
Diffstat (limited to 'basegfx/source/polygon/b2dtrapezoid.cxx')
-rw-r--r-- | basegfx/source/polygon/b2dtrapezoid.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/basegfx/source/polygon/b2dtrapezoid.cxx b/basegfx/source/polygon/b2dtrapezoid.cxx index f25b7bfb884e..33d588650ce8 100644 --- a/basegfx/source/polygon/b2dtrapezoid.cxx +++ b/basegfx/source/polygon/b2dtrapezoid.cxx @@ -108,7 +108,7 @@ namespace basegfx std::swap(mpStart, mpEnd); } - // no horizontal edges allowed, all neeed to traverse vertically + // no horizontal edges allowed, all need to traverse vertically OSL_ENSURE(mpEnd->getY() > mpStart->getY(), "Illegal TrDeEdgeEntry constructed (!)"); } @@ -121,7 +121,7 @@ namespace basegfx { mpStart = pNewStart; - // no horizontal edges allowed, all neeed to traverse vertically + // no horizontal edges allowed, all need to traverse vertically OSL_ENSURE(mpEnd->getY() > mpStart->getY(), "Illegal TrDeEdgeEntry constructed (!)"); } } @@ -135,7 +135,7 @@ namespace basegfx { mpEnd = pNewEnd; - // no horizontal edges allowed, all neeed to traverse vertically + // no horizontal edges allowed, all need to traverse vertically OSL_ENSURE(mpEnd->getY() > mpStart->getY(), "Illegal TrDeEdgeEntry constructed (!)"); } } |