diff options
author | Eike Rathke <erack@redhat.com> | 2012-11-13 14:23:01 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2012-11-13 14:28:27 +0100 |
commit | 5391bd1e54157457abe1098b29f067d6e0059113 (patch) | |
tree | 2ac7360a00ee27a575c7802e75b3ac325c8d5232 /svl | |
parent | 677ca1d59618c592786292ac275497e0ce753604 (diff) |
resolved fdo#55369 accept fraction input if preset
Accept fraction input without integer portion if the format was preset
as fraction, e.g. 1/5 instead of 0 1/5 and don't force to date.
Change-Id: I188593c57e5779aae029a1aa2ebd2c18de441804
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/numbers/zforfind.cxx | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/svl/source/numbers/zforfind.cxx b/svl/source/numbers/zforfind.cxx index 55d7fd76c54e..4767f45f6201 100644 --- a/svl/source/numbers/zforfind.cxx +++ b/svl/source/numbers/zforfind.cxx @@ -2014,14 +2014,24 @@ bool ImpSvNumberInputScan::ScanMidString( const String& rString, { if ( eScannedType != NUMBERFORMAT_UNDEFINED // already another type && eScannedType != NUMBERFORMAT_DATE) // except date - return MatchedReturn(); // => jan/31/1994 - else if ( eScannedType != NUMBERFORMAT_DATE // analyzed date until now - && ( eSetType == NUMBERFORMAT_FRACTION // and preset was fraction - || (nAnzNums == 3 // or 3 numbers - && nStringPos > 2) ) ) // and what ??? + return MatchedReturn(); // => jan/31/1994 + else if (eScannedType != NUMBERFORMAT_DATE // analyzed no date until now + && ( eSetType == NUMBERFORMAT_FRACTION // and preset was fraction + || (nAnzNums == 3 // or 3 numbers + && (nStringPos == 3 // and 3rd string particle + || (nStringPos == 4 // or 4th + && nSign))))) // if signed { SkipBlanks(rString, nPos); - eScannedType = NUMBERFORMAT_FRACTION; // !!! it IS a fraction + if (nPos == rString.Len()) + { + eScannedType = NUMBERFORMAT_FRACTION; // !!! it IS a fraction (so far) + if (eSetType == NUMBERFORMAT_FRACTION + && nAnzNums == 2 + && (nStringPos == 1 // for 4/5 + || (nStringPos == 2 && nSign))) // or signed -4/5 + return true; // don't fall into date trap + } } else nPos--; // put '/' back |