Kaydet (Commit) 414f14ff authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Don't assume sal_Unicode is unsigned short

Change-Id: Ia31a6817aa39da1edf76443fd7621375ea9dc191
üst 8f7e5633
......@@ -278,7 +278,7 @@ OUString LwpSilverBullet::GetNumCharByStyleID(LwpFribParaNumber* pParaNumber)
strNumChar = "i";
break;
case NUMCHAR_other:
strNumChar = OUString(pParaNumber->GetNumberChar());
strNumChar = OUString(sal_Unicode(pParaNumber->GetNumberChar()));
break;
case NUMCHAR_Chinese1:
{
......
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