diff options
author | Eike Rathke <erack@redhat.com> | 2014-08-18 16:28:32 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2014-08-18 16:31:08 +0200 |
commit | bf674ab0f3097ad122c727b4d86f004f8cce1f61 (patch) | |
tree | 6723b300317bdb6a18e88a84a870fbb2417ce10e /svl | |
parent | 8fa219fbb5101b661ce0e9aabceb52d3981ffe88 (diff) |
detect * with no character following as invalid format code
... so adding it to the list in Format Numbers using the checkmark
button is not possible.
Change-Id: I57ca6a7a3617583a82a99c87291373b1fe4e246d
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/numbers/zforscan.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/svl/source/numbers/zforscan.cxx b/svl/source/numbers/zforscan.cxx index 68959bce560d..813dededb663 100644 --- a/svl/source/numbers/zforscan.cxx +++ b/svl/source/numbers/zforscan.cxx @@ -933,6 +933,11 @@ sal_Int32 ImpSvNumberformatScan::Symbol_Division(const OUString& rString) } else { + // Valid only if there is a character following, else we are + // at the end of a code that does not have a fill character + // (yet?). + if (sStrArray[nAnzStrings].getLength() < 2) + return nPos; bStar = true; } } |