diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-01-24 16:44:15 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-01-24 16:53:56 +0000 |
commit | 3ee84cb27e49d26acc50e235abafd7aa5e6a8c72 (patch) | |
tree | b56bd4e9e21313746629461752196f624b012c46 /sc/source/ui/docshell | |
parent | 17ecf0036d44657b954de6c8f7efd536ab5c4809 (diff) |
use write_uInt16s_FromOUString pattern
Diffstat (limited to 'sc/source/ui/docshell')
-rw-r--r-- | sc/source/ui/docshell/docsh.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/docshell/docsh.cxx b/sc/source/ui/docshell/docsh.cxx index 1041126e7026..74548824f1db 100644 --- a/sc/source/ui/docshell/docsh.cxx +++ b/sc/source/ui/docshell/docsh.cxx @@ -1947,7 +1947,7 @@ void ScDocShell::AsciiSave( SvStream& rStream, const ScImportOptions& rAsciiOpt } if ( bNeedQuotes ) rStream.WriteUniOrByteChar( cStrDelim, eCharSet ); - rStream.WriteUnicodeText( aUniString ); + write_uInt16s_FromOUString(rStream, aUniString); if ( bNeedQuotes ) rStream.WriteUniOrByteChar( cStrDelim, eCharSet ); } |