Kaydet (Commit) 423e8bc4 authored tarafından Wang Lei's avatar Wang Lei

#i119943 - Underline "_" can not work with ";" in format code, the semicolon…

#i119943 -  Underline "_" can not work with ";" in format code, the semicolon will always be regarded as separator 

Patch by: Zhang Lu
Review by: Wang Lei
üst b2ab5a63
......@@ -1297,7 +1297,7 @@ short SvNumberformat::ImpNextSymbol(String& rString,
break;
case SsGetString:
{
if (cToken == ';' && !IsSingleSymbol(rString, nPos-2))
if (cToken == ';' && (nPos>=2) &&!IsSingleSymbol(rString, nPos-2))
{
eState = SsStop;
}
......
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