diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-03-24 15:28:34 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-03-25 12:57:18 +0000 |
commit | f7eb8ae9d9cce3e493105da98cc4ace9c56a3062 (patch) | |
tree | 8ed42a0937013d927bbbb75afa62caa9866c15a6 /tools | |
parent | 3c7652203cc381e5c8c06d42130ca3bae5576fd2 (diff) |
Fix typos
Change-Id: Ieea40e1b7282267157810f9f58ca083e68ae6715
Reviewed-on: https://gerrit.libreoffice.org/35659
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/fsys/urlobj.cxx | 2 | ||||
-rw-r--r-- | tools/source/generic/poly.cxx | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tools/source/fsys/urlobj.cxx b/tools/source/fsys/urlobj.cxx index 45af3393afe3..a052506196f1 100644 --- a/tools/source/fsys/urlobj.cxx +++ b/tools/source/fsys/urlobj.cxx @@ -1060,7 +1060,7 @@ bool INetURLObject::setAbsURIRef(OUString const & rTheAbsURIRef, // becomes // "file:///" ALPHA ":" ["/" *path] ["#" *UCS4] // replacing "\" by "/" within <*path> - // 4th Production (misscounted slashes): + // 4th Production (miscounted slashes): // "//" *path ["#" *UCS4] // becomes // "file:///" *path ["#" *UCS4] diff --git a/tools/source/generic/poly.cxx b/tools/source/generic/poly.cxx index 9d546499f3ee..eba86e6f40b6 100644 --- a/tools/source/generic/poly.cxx +++ b/tools/source/generic/poly.cxx @@ -1109,7 +1109,7 @@ void Polygon::AdaptiveSubdivide( Polygon& rResult, const double d ) const if (aPoints.size() >= SAL_MAX_UINT16) { OSL_ENSURE(aPoints.size() < SAL_MAX_UINT16, - "Polygon::AdapativeSubdivision created polygon too many points;" + "Polygon::AdaptiveSubdivision created polygon too many points;" " using original polygon instead"); // The resulting polygon can not hold all the points @@ -1690,7 +1690,7 @@ void impCorrectContinuity(basegfx::B2DPolygon& roPolygon, sal_uInt32 nIndex, Pol { if(roPolygon.isPrevControlPointUsed(nIndex) && roPolygon.isNextControlPointUsed(nIndex)) { - // #i115917# Patch from osnola (modified, thanks for showing the porblem) + // #i115917# Patch from osnola (modified, thanks for showing the problem) // The correction is needed because an integer polygon with control points // is converted to double precision. When C1 or C2 is used the involved vectors @@ -1700,7 +1700,7 @@ void impCorrectContinuity(basegfx::B2DPolygon& roPolygon, sal_uInt32 nIndex, Pol // it needs to be corrected to be able to detect the continuity in this points // correctly. - // We only have the integer data here (already in double precision form, but no mantisses + // We only have the integer data here (already in double precision form, but no mantisse // used), so the best correction is to use: // for C1: The longest vector since it potentially has best preserved the original vector. |