summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/xlformula.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-01-14 11:06:32 +0000
committerKurt Zenker <kz@openoffice.org>2005-01-14 11:06:32 +0000
commit140d60d465fec3c706f3f5762932bc9c65d1c22b (patch)
treef2217dae3a7435342e37e404b9c5230e1383d809 /sc/source/filter/excel/xlformula.cxx
parent96fc232943acafb70e89c555182e05980c8e3574 (diff)
INTEGRATION: CWS dr31 (1.5.32); FILE MERGED
2005/01/05 14:04:08 dr 1.5.32.2: RESYNC: (1.5-1.6); FILE MERGED 2004/12/17 15:05:53 dr 1.5.32.1: #i38792# #i38821# Excel export of defined names and database ranges reimplemented
Diffstat (limited to 'sc/source/filter/excel/xlformula.cxx')
-rw-r--r--sc/source/filter/excel/xlformula.cxx11
1 files changed, 5 insertions, 6 deletions
diff --git a/sc/source/filter/excel/xlformula.cxx b/sc/source/filter/excel/xlformula.cxx
index 1c5fb25adcf4..567d633c02a9 100644
--- a/sc/source/filter/excel/xlformula.cxx
+++ b/sc/source/filter/excel/xlformula.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xlformula.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: vg $ $Date: 2004-12-23 10:46:02 $
+ * last change: $Author: kz $ $Date: 2005-01-14 12:06:32 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -376,7 +376,7 @@ XclFunctionProvider::XclFunctionProvider( const XclRoot& rRoot )
FillXclFuncMap( saFuncTable_5, STATIC_TABLE_END( saFuncTable_5 ) );
if( eBiff >= xlBiff8 )
FillXclFuncMap( saFuncTable_8, STATIC_TABLE_END( saFuncTable_8 ) );
- // external functions (i.e. addin functions)
+ // external functions (i.e. add-in functions)
FillXclFuncMap( saFuncTable_E, STATIC_TABLE_END( saFuncTable_E ) );
}
else
@@ -393,11 +393,10 @@ XclFunctionProvider::XclFunctionProvider( const XclRoot& rRoot )
if( eBiff >= xlBiff5 )
FillScFuncMap( saFuncTable_5, STATIC_TABLE_END( saFuncTable_5 ) );
if( eBiff >= xlBiff8 )
- {
FillScFuncMap( saFuncTable_8, STATIC_TABLE_END( saFuncTable_8 ) );
- // external functions (i.e. addin functions), currently BIFF8 only
+ // external functions (i.e. add-in functions)
+ if( eBiff >= xlBiff5 )
FillScFuncMap( saFuncTable_E, STATIC_TABLE_END( saFuncTable_E ) );
- }
}
}