summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
Diffstat (limited to 'svl')
-rw-r--r--svl/source/numbers/zformat.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/numbers/zformat.cxx b/svl/source/numbers/zformat.cxx
index 212c6f15ec44..271a33189809 100644
--- a/svl/source/numbers/zformat.cxx
+++ b/svl/source/numbers/zformat.cxx
@@ -2589,12 +2589,12 @@ bool SvNumberformat::GetOutputString(double fNumber,
case NF_SYMBOLTYPE_STAR:
if( bStarFlag )
{
- sBuff.append((sal_Unicode) 0x1B);
const OUString& rStr =rInfo.sStrArray[i];
// Right during user input the star symbol is the very
// last character before the user enters another one.
if (rStr.getLength() > 1)
{
+ sBuff.append((sal_Unicode) 0x1B);
sBuff.append(rStr[1]);
bRes = true;
}