diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-08-31 19:31:43 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-09-01 11:15:11 +0200 |
commit | 0940229305247b4e64e8c85c9734020c9808a6ec (patch) | |
tree | 3491592b0ddade1859dca48c62007bafb9cf47d6 /i18npool | |
parent | 9c06059ec546683bfa095cf4f59ac6ea94da34fb (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')
-rw-r--r-- | i18npool/source/localedata/LocaleNode.cxx | 2 | ||||
-rw-r--r-- | i18npool/source/search/textsearch.cxx | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/i18npool/source/localedata/LocaleNode.cxx b/i18npool/source/localedata/LocaleNode.cxx index 11a12bd3d6eb..15c6a2f69ca1 100644 --- a/i18npool/source/localedata/LocaleNode.cxx +++ b/i18npool/source/localedata/LocaleNode.cxx @@ -1999,7 +1999,7 @@ void LCMiscNode::generateCode (const OFileWriter &of) const } const LocaleNode * reserveNode = findNode("ReservedWords"); if (!reserveNode) - incError( "No ReservedWords element."); // should not happen if validated.. + incError( "No ReservedWords element."); // should not happen if validated... const LocaleNode * forbidNode = findNode("ForbiddenCharacters"); const LocaleNode * breakNode = findNode("BreakIteratorRules"); 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]; |