summaryrefslogtreecommitdiff
path: root/basegfx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-04-09 12:59:02 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-04-14 12:32:02 +0200
commit2805ac13dcf5ec0c7bbac949ff08a044a6805fd7 (patch)
tree07c93e952ef78e0da5eb8b365f01ecb7a7ab2227 /basegfx
parentcc1352243e4c69c60851df901d2491fff91c2cb4 (diff)
typo: choosen -> chosen
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/source/polygon/b2dpolygontools.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/polygon/b2dpolygontools.cxx b/basegfx/source/polygon/b2dpolygontools.cxx
index 5a3dfcd4c076..0e6b2b96cdb3 100644
--- a/basegfx/source/polygon/b2dpolygontools.cxx
+++ b/basegfx/source/polygon/b2dpolygontools.cxx
@@ -685,13 +685,13 @@ namespace basegfx
{
if(fTools::moreOrEqual(fDistance, fEdgeLength))
{
- // end point of choosen edge
+ // end point of chosen edge
const sal_uInt32 nNextIndex((nIndex + 1) % nPointCount);
aRetval = rCandidate.getB2DPoint(nNextIndex);
}
else if(fTools::equalZero(fDistance))
{
- // start point of choosen edge
+ // start point of chosen edge
aRetval = aRetval;
}
else