summaryrefslogtreecommitdiff
path: root/basegfx
diff options
context:
space:
mode:
authorOtto Kekäläinen <otto@seravo.fi>2016-07-03 20:24:00 +0300
committerjan iversen <jani@documentfoundation.org>2016-07-04 06:11:36 +0000
commit428e23f4f7025506e767d895e9b46492a8432aed (patch)
treeec767267ad2afc8ec3bf486da7cb9da2c567922d /basegfx
parent61d95c70c0d4404a24064a58f3ccc3adf0b5e7e2 (diff)
Fix some spelling errors in comments and strings
Change-Id: Iecd6b5e13d6be14651f77d8e37f01117ba15a11e Reviewed-on: https://gerrit.libreoffice.org/26883 Reviewed-by: jan iversen <jani@documentfoundation.org> Tested-by: jan iversen <jani@documentfoundation.org>
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/source/polygon/b2dlinegeometry.cxx2
-rw-r--r--basegfx/source/polygon/b2dtrapezoid.cxx6
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 (!)");
}
}