summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/xeformula.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2006-05-05 08:37:24 +0000
committerRüdiger Timm <rt@openoffice.org>2006-05-05 08:37:24 +0000
commit2800531ac723515b8107cfdace3e4f066f369e69 (patch)
tree8a3edf3266b3a539bdb609d78b5664289b67da86 /sc/source/filter/excel/xeformula.cxx
parentc99d0789ffe227fa2cd9792cf8b9c763dff5fbeb (diff)
INTEGRATION: CWS calc36 (1.8.126); FILE MERGED
2006/04/25 13:16:34 nn 1.8.126.2: RESYNC: (1.8-1.9); FILE MERGED 2006/04/06 12:16:35 dr 1.8.126.1: #i62752# #i63502# #i63591# moved changes from CWS dr47
Diffstat (limited to 'sc/source/filter/excel/xeformula.cxx')
-rw-r--r--sc/source/filter/excel/xeformula.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/filter/excel/xeformula.cxx b/sc/source/filter/excel/xeformula.cxx
index 01a04838ace0..79b1e72f2b2d 100644
--- a/sc/source/filter/excel/xeformula.cxx
+++ b/sc/source/filter/excel/xeformula.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: xeformula.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: hr $ $Date: 2006-04-19 14:03:56 $
+ * last change: $Author: rt $ $Date: 2006-05-05 09:37:24 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -1614,7 +1614,7 @@ void XclExpFmlaCompImpl::ConvertRefData(
{
DBG_ASSERT( meBiff == EXC_BIFF8, "XclExpFmlaCompImpl::ConvertRefData - NLRs only for BIFF8" );
// Calc does not support absolute reference mode in natural language references
- ::set_flag( rXclPos.mnCol, EXC_TOK_EXT_NATREL );
+ ::set_flag( rXclPos.mnCol, EXC_TOK_NLR_REL );
}
else
{
@@ -1657,8 +1657,8 @@ void XclExpFmlaCompImpl::ProcessCellRef( const XclExpTokenData& rTokData, sal_uI
DBG_ASSERT( aRefData.IsColRel() != aRefData.IsRowRel(),
"XclExpFmlaCompImpl::ProcessCellRef - broken natural language reference" );
// create tExtended token for natural language reference
- sal_uInt8 nSubId = aRefData.IsColRel() ? EXC_TOK_EXT_COLV : EXC_TOK_EXT_ROWV;
- AppendOpTokenId( EXC_TOKID_EXTENDED, nExpClass, rTokData.mnSpaces );
+ sal_uInt8 nSubId = aRefData.IsColRel() ? EXC_TOK_NLR_COLV : EXC_TOK_NLR_ROWV;
+ AppendOpTokenId( EXC_TOKID_NLR, nExpClass, rTokData.mnSpaces );
Append( nSubId );
AppendAddress( aXclPos );
}