summaryrefslogtreecommitdiff
path: root/i18npool/source/search
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-31 19:31:43 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-01 11:15:11 +0200
commit0940229305247b4e64e8c85c9734020c9808a6ec (patch)
tree3491592b0ddade1859dca48c62007bafb9cf47d6 /i18npool/source/search
parent9c06059ec546683bfa095cf4f59ac6ea94da34fb (diff)
Fix '..'
To complete this: https://gerrit.libreoffice.org/#/c/78312/ This is a massive replace for lines ending with ".." instead of "..." It passed "make check" on Linux. Change-Id: I07fa7b2e30ba9ea17a1f9a5e21c57216ba958efe Reviewed-on: https://gerrit.libreoffice.org/78356 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
Diffstat (limited to 'i18npool/source/search')
-rw-r--r--i18npool/source/search/textsearch.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/i18npool/source/search/textsearch.cxx b/i18npool/source/search/textsearch.cxx
index 3a22a3626326..f6f5fd3c618e 100644
--- a/i18npool/source/search/textsearch.cxx
+++ b/i18npool/source/search/textsearch.cxx
@@ -266,7 +266,7 @@ void TextSearch::setOptions( const SearchOptions& rOptions )
break;
}
// It would be nice if an inherited struct had a ctor that takes an
- // instance of the object the struct derived from..
+ // instance of the object the struct derived from...
SearchOptions2 aOptions2(
rOptions.algorithmType,
rOptions.searchFlag,
@@ -278,7 +278,7 @@ void TextSearch::setOptions( const SearchOptions& rOptions )
rOptions.insertedChars,
rOptions.transliterateFlags,
nAlgorithmType2,
- 0 // no wildcard search, no escape character..
+ 0 // no wildcard search, no escape character...
);
setOptions2( aOptions2);
}
@@ -1348,7 +1348,7 @@ SearchResult TextSearch::WildcardSrchBkwrd( const OUString& searchStr, sal_Int32
{
// Copy the escape character code units first in the
// unlikely case that it would not be of BMP.
- assert(nIndex - nOld == 2); // it's UTF-16, so..
+ assert(nIndex - nOld == 2); // it's UTF-16, so...
sal_Unicode buf[2];
buf[0] = rPattern[nOld];
buf[1] = rPattern[nOld+1];