summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorGregor Hartmann <gh@openoffice.org>2001-07-26 11:59:07 +0000
committerGregor Hartmann <gh@openoffice.org>2001-07-26 11:59:07 +0000
commit1b0adb401955acfff882c62022687f4bd45ef2cb (patch)
tree29e643a7e9d701ac877c760081203c4e0674a495 /basic
parentf4bf997fba231b5093b0fb7b733e81b4253e58f8 (diff)
#84831# fixed encoding
Diffstat (limited to 'basic')
-rw-r--r--basic/source/app/msgedit.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/app/msgedit.cxx b/basic/source/app/msgedit.cxx
index a49136d6d7c5..efa8223a8f37 100644
--- a/basic/source/app/msgedit.cxx
+++ b/basic/source/app/msgedit.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: msgedit.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: gh $ $Date: 2001-07-11 09:44:47 $
+ * last change: $Author: gh $ $Date: 2001-07-26 12:59:07 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -626,7 +626,7 @@ BOOL MsgEdit::Save( const String& aName )
pRun = aEditTree.NextSibling( pRun );
aSave.ConvertLineEnd(LINEEND_CRLF);
- aStrm << ByteString( aSave, RTL_TEXTENCODING_UTF8 ).GetBuffer();
+ aStrm << ByteString( aSave, RTL_TEXTENCODING_IBM_850 ).GetBuffer();
SvLBoxEntry *pEntry;
while ( pRun )