diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-08-26 22:49:55 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-08-27 09:15:00 +0200 |
commit | 8a2136443929ac0215b3aa4008de272b6d576050 (patch) | |
tree | c051ecf77e96ac23586da3585f0fec73cf603c21 /svgio | |
parent | 6ad28942656ad6e707ffba5b64013af87b37aebf (diff) |
Fix typos
Change-Id: Ieebf8bc3051d1f6b99cf72629aa411e27de21640
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101403
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'svgio')
-rw-r--r-- | svgio/source/svgreader/svgsvgnode.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svgio/source/svgreader/svgsvgnode.cxx b/svgio/source/svgreader/svgsvgnode.cxx index d462e8001f57..65a1d09b8bdf 100644 --- a/svgio/source/svgreader/svgsvgnode.cxx +++ b/svgio/source/svgreader/svgsvgnode.cxx @@ -426,7 +426,7 @@ namespace svgio::svgreader else { // create mapping - // #i122610 SVG 1.1 defines in section 5.1.2 that if the attribute perserveAspectRatio is not specified, + // #i122610 SVG 1.1 defines in section 5.1.2 that if the attribute preserveAspectRatio is not specified, // then the effect is as if a value of 'xMidYMid meet' were specified. SvgAspectRatio aRatioDefault(Align_xMidYMid,true); const SvgAspectRatio& rRatio = getSvgAspectRatio().isSet()? getSvgAspectRatio() : aRatioDefault; @@ -560,7 +560,7 @@ namespace svgio::svgreader if (bNeedsMapping) { // create mapping - // SVG 1.1 defines in section 5.1.2 that if the attribute perserveAspectRatio is not specified, + // SVG 1.1 defines in section 5.1.2 that if the attribute preserveAspectRatio is not specified, // then the effect is as if a value of 'xMidYMid meet' were specified. SvgAspectRatio aRatioDefault(Align_xMidYMid,true); const SvgAspectRatio& rRatio = getSvgAspectRatio().isSet()? getSvgAspectRatio() : aRatioDefault; |