Kaydet (Commit) bf674ab0 authored tarafından Eike Rathke's avatar Eike Rathke

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
üst 8fa219fb
......@@ -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;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment