summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/xepage.cxx
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-12-19 12:20:47 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-12-19 12:20:47 +0000
commit75052d551c757da90b4e9aa4286124d5e73f19d3 (patch)
treeb5bd388cb79fba621d604a6847e8bd1e113a96ed /sc/source/filter/excel/xepage.cxx
parent9472380d7e34c47d33024f6b155787c98b395433 (diff)
INTEGRATION: CWS dr51 (1.12.84); FILE MERGED
2006/11/08 09:30:25 dr 1.12.84.1: #i71033# use app-font text encoding if CODEPAGE is missing, remane 'CharSet' -> 'rtl_TextEncoding'
Diffstat (limited to 'sc/source/filter/excel/xepage.cxx')
-rw-r--r--sc/source/filter/excel/xepage.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/filter/excel/xepage.cxx b/sc/source/filter/excel/xepage.cxx
index 6cf9a6eba63b..651f72c5b05c 100644
--- a/sc/source/filter/excel/xepage.cxx
+++ b/sc/source/filter/excel/xepage.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: xepage.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: kz $ $Date: 2006-07-21 11:59:19 $
+ * last change: $Author: ihi $ $Date: 2006-12-19 13:20:47 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -108,7 +108,7 @@ void XclExpHeaderFooter::WriteBody( XclExpStream& rStrm )
{
XclExpString aExString;
if( rStrm.GetRoot().GetBiff() <= EXC_BIFF5 )
- aExString.AssignByte( maHdrString, rStrm.GetRoot().GetCharSet(), EXC_STR_8BITLENGTH );
+ aExString.AssignByte( maHdrString, rStrm.GetRoot().GetTextEncoding(), EXC_STR_8BITLENGTH );
else
aExString.Assign( maHdrString, EXC_STR_DEFAULT, 255 ); // 16-bit length, but max 255 chars
rStrm << aExString;