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 /svl | |
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 'svl')
-rw-r--r-- | svl/source/numbers/zforfind.cxx | 2 | ||||
-rw-r--r-- | svl/source/numbers/zformat.cxx | 2 | ||||
-rw-r--r-- | svl/source/numbers/zforscan.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/svl/source/numbers/zforfind.cxx b/svl/source/numbers/zforfind.cxx index ea7b9ee61c0d..ff8f8429ad42 100644 --- a/svl/source/numbers/zforfind.cxx +++ b/svl/source/numbers/zforfind.cxx @@ -1360,7 +1360,7 @@ bool ImpSvNumberInputScan::IsAcceptedDatePattern( sal_uInt16 nStartPatternAt ) OUStringBuffer aBuf(sStrArray[nNext]); aBuf.stripEnd(); // Expand again in case of pattern "M. D. " and - // input "M. D. ", maybe fetched far, but.. + // input "M. D. ", maybe fetched far, but... padToLength(aBuf, rPat.getLength() - nPat, ' '); OUString aStr = aBuf.makeStringAndClear(); bOk = (rPat.indexOf( aStr, nPat) == nPat); diff --git a/svl/source/numbers/zformat.cxx b/svl/source/numbers/zformat.cxx index 792f6cb4758e..092d6b2b5908 100644 --- a/svl/source/numbers/zformat.cxx +++ b/svl/source/numbers/zformat.cxx @@ -3232,7 +3232,7 @@ bool SvNumberformat::ImpGetTimeOutput(double fNumber, // IDEA: instead of eCodeType pass the index to nTypeArray and restrict // inspection of month name around that one, that would enable different month -// cases in one format. Though probably the most rare use case ever.. +// cases in one format. Though probably the most rare use case ever... sal_Int32 SvNumberformat::ImpUseMonthCase( int & io_nState, const ImpSvNumFor& rNumFor, NfKeywordIndex eCodeType ) { diff --git a/svl/source/numbers/zforscan.cxx b/svl/source/numbers/zforscan.cxx index e75a8d5267bf..cf036c8d39ed 100644 --- a/svl/source/numbers/zforscan.cxx +++ b/svl/source/numbers/zforscan.cxx @@ -2052,7 +2052,7 @@ sal_Int32 ImpSvNumberformatScan::FinalScan( OUString& rString ) { // #,,,, if ( StringEqualsChar( sOldThousandSep, ' ' ) ) { - // strange, those French.. + // strange, those French... bool bFirst = true; // set a hard No-Break Space or ConvertMode const OUString& rSepF = pFormatter->GetNumThousandSep(); |