diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-06-14 18:29:22 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-06-15 06:53:19 +0000 |
commit | c3c45ff7efcd8b22be64af410befbfa5cc330f6f (patch) | |
tree | bcbc2f2d62f851488f43beba254a3773dce6c863 /svgio/source | |
parent | b4b71d20e33b82d377e287f0e5cf07b7e6182e78 (diff) |
Fix typos
Change-Id: Id05ea8cf8aed878bedfe73c274df3c67b64bad37
Reviewed-on: https://gerrit.libreoffice.org/16263
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svgio/source')
-rw-r--r-- | svgio/source/svgreader/svgtools.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svgio/source/svgreader/svgtools.cxx b/svgio/source/svgreader/svgtools.cxx index 5ae5830c2996..5cd34792b6a4 100644 --- a/svgio/source/svgreader/svgtools.cxx +++ b/svgio/source/svgreader/svgtools.cxx @@ -1567,7 +1567,7 @@ namespace svgio return rCandidate; } - OUString consolidateContiguosSpace(const OUString& rCandidate) + OUString consolidateContiguousSpace(const OUString& rCandidate) { const sal_Int32 nLen(rCandidate.getLength()); @@ -1629,8 +1629,8 @@ namespace svgio // strip of all leading and trailing spaces aRetval = aRetval.trim(); - // consolidate contiguos space - aRetval = consolidateContiguosSpace(aRetval); + // consolidate contiguous space + aRetval = consolidateContiguousSpace(aRetval); return aRetval; } |