diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-08-17 17:41:07 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-08-17 19:42:42 +0200 |
commit | d7484b08c636801b474582c1e940dc8e497b74e8 (patch) | |
tree | f12af51b7e91c2b4aa5c2d5754011d37e275bcc9 /basegfx | |
parent | bda18edf18f30cabb1c6589c59afc77f38541220 (diff) |
Fix typos
Change-Id: Id31299912b822baf9eecbb03cba53339f0528ae8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100867
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/polygon/b2dpolygontools.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/polygon/b2dpolygontools.cxx b/basegfx/source/polygon/b2dpolygontools.cxx index 19aa7ee634b0..fa772be9e199 100644 --- a/basegfx/source/polygon/b2dpolygontools.cxx +++ b/basegfx/source/polygon/b2dpolygontools.cxx @@ -171,7 +171,7 @@ namespace basegfx::utils B2DCubicBezier aBezier; aBezier.setStartPoint(rCandidate.getB2DPoint(0)); - // perf: try to avoid too many realloctions by guessing the result's pointcount + // perf: try to avoid too many reallocations by guessing the result's pointcount aRetval.reserve(nPointCount*4); // add start point (always) @@ -254,7 +254,7 @@ namespace basegfx::utils B2DCubicBezier aBezier; aBezier.setStartPoint(rCandidate.getB2DPoint(0)); - // perf: try to avoid too many realloctions by guessing the result's pointcount + // perf: try to avoid too many reallocations by guessing the result's pointcount aRetval.reserve(nPointCount*4); // add start point (always) |