diff options
Diffstat (limited to 'sw/source/ui')
-rw-r--r-- | sw/source/ui/config/uinums.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sw/source/ui/config/uinums.cxx b/sw/source/ui/config/uinums.cxx index 665ed2c168cf..8d85cf96def0 100644 --- a/sw/source/ui/config/uinums.cxx +++ b/sw/source/ui/config/uinums.cxx @@ -403,8 +403,10 @@ SwNumRulesWithName::_SwNumFmtGlobal::_SwNumFmtGlobal( SvStream& rStream, nCharSet = RTL_TEXTENCODING_SYMBOL; if( VERSION_53A > nVersion ) - aFmt.SetBulletChar( ByteString::ConvertToUnicode( - sal_Char(aFmt.GetBulletChar()), nCharSet )); + { + sal_Char cEncoded(aFmt.GetBulletChar()); + aFmt.SetBulletChar(rtl::OUString(&cEncoded, 1, nCharSet).toChar()); + } } if( VERSION_30B != nVersion ) |