diff options
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/polygon/b2dlinegeometry.cxx | 2 | ||||
-rw-r--r-- | basegfx/source/polygon/b2dtrapezoid.cxx | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/basegfx/source/polygon/b2dlinegeometry.cxx b/basegfx/source/polygon/b2dlinegeometry.cxx index 799604f37014..1b4de144c6da 100644 --- a/basegfx/source/polygon/b2dlinegeometry.cxx +++ b/basegfx/source/polygon/b2dlinegeometry.cxx @@ -521,7 +521,7 @@ namespace basegfx // Solve by using tooling. // Remark: This nearly never happens due to curve preparations to extreme points // and maximum angle turning, but I constructed a test case and checked that it is - // working propery. + // working property. const B2DPolyPolygon aTemp(tools::solveCrossovers(aBezierPolygon)); const sal_uInt32 nTempCount(aTemp.count()); 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 (!)"); } } |