summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2017-05-08 00:47:18 +0200
committerJulien Nabet <serval2412@yahoo.fr>2017-05-09 15:22:11 +0200
commitbd6a8ab3b89ce938368afc547a368e79d13142c6 (patch)
treed1dfa8d0ed969064062092c578742d968a40b348 /sc/source
parenta0badb15fa97e3f4be990ff83148e48ae1db7723 (diff)
Fix typos
Change-Id: Ie0f67456e5c7d9b7b26b27b4d633881236ceeadb Reviewed-on: https://gerrit.libreoffice.org/37361 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/core/tool/stringutil.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/tool/stringutil.cxx b/sc/source/core/tool/stringutil.cxx
index c18c5445d447..afcbe7412474 100644
--- a/sc/source/core/tool/stringutil.cxx
+++ b/sc/source/core/tool/stringutil.cxx
@@ -366,13 +366,13 @@ sal_Int32 ScStringUtil::GetQuotedTokenCount(const OUString &rIn, const OUString&
sal_Unicode c = *pStr;
if ( cQuotedEndChar )
{
- // reached end of the quote ?
+ // reached end of the quote?
if ( c == cQuotedEndChar )
cQuotedEndChar = 0;
}
else
{
- // Is the char a quote-beginn char ?
+ // Is the char a quote-begin char?
sal_Int32 nQuoteIndex = 0;
while ( nQuoteIndex < nQuotedLen )
{