diff options
author | Eike Rathke <erack@redhat.com> | 2020-07-04 01:17:13 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2020-07-06 08:56:08 +0200 |
commit | 348e78b8ccd04b59140c7f83504c7823b2ffbe8c (patch) | |
tree | 6d6f3919180f49f249fbba3fb1937600a6263f40 /svl | |
parent | 37b2c02bee606ee2238dc6b0c85f9d5da78a02ba (diff) |
Resolves: tdf#134490 do not skip all trailing '-' or '/' of the start string
Skip *one* of them under the condition that a month name was
actually recognized.
A horrible implementation of
commit b00fc9462d26083b6d09f72ea44abb1e11546b63
CommitDate: Wed Sep 15 11:54:10 2010 +0200
sc-date-fix.diff: Parse 'june-2007' as June 1 2007 in en-US locales
Change-Id: I0800c4f0b33aa1413bde558d710fe467e4380262
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97903
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/numbers/zforfind.cxx | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/svl/source/numbers/zforfind.cxx b/svl/source/numbers/zforfind.cxx index 2e62b277e6c8..5a81e68af7a1 100644 --- a/svl/source/numbers/zforfind.cxx +++ b/svl/source/numbers/zforfind.cxx @@ -2397,14 +2397,13 @@ bool ImpSvNumberInputScan::ScanStartString( const OUString& rString ) } } } + // Skip one trailing '-' or '/' character to recognize June-2007 + if (nMonth && nPos + 1 == rString.getLength()) + { + SkipChar('-', rString, nPos) || SkipChar('/', rString, nPos); + } } - // skip any trailing '-' or '/' chars - if (nPos < rString.getLength()) - { - while (SkipChar ('-', rString, nPos) || SkipChar ('/', rString, nPos)) - ; // do nothing - } if (nPos < rString.getLength()) // not everything consumed { // Does input StartString equal StartString of format? |