diff options
Diffstat (limited to 'tools/source')
-rw-r--r-- | tools/source/stream/stream.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx index ecd02cc7c763..1109bd80a611 100644 --- a/tools/source/stream/stream.cxx +++ b/tools/source/stream/stream.cxx @@ -783,7 +783,7 @@ bool SvStream::WriteLine(const OString& rStr) bool SvStream::WriteUniOrByteChar( sal_Unicode ch, rtl_TextEncoding eDestCharSet ) { if ( eDestCharSet == RTL_TEXTENCODING_UNICODE ) - WriteChar(ch); + WriteUnicode(ch); else { OString aStr(&ch, 1, eDestCharSet); |