summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/frmbase.cxx
diff options
context:
space:
mode:
authorDaniel Rentz <dr@openoffice.org>2002-01-08 06:23:24 +0000
committerDaniel Rentz <dr@openoffice.org>2002-01-08 06:23:24 +0000
commit694e81973b9094b3748eef76ae90289e0709ec7d (patch)
tree3e1daafbafbcaf363222eab98ac1cd69f0fe7d92 /sc/source/filter/excel/frmbase.cxx
parent10a5d0f738078bdcd761ab91d54c993c82d8eae5 (diff)
#96263# loop on sheet range 0x0-0xFFFF
Diffstat (limited to 'sc/source/filter/excel/frmbase.cxx')
-rw-r--r--sc/source/filter/excel/frmbase.cxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/sc/source/filter/excel/frmbase.cxx b/sc/source/filter/excel/frmbase.cxx
index 8df4b5822099..220e16a18d0c 100644
--- a/sc/source/filter/excel/frmbase.cxx
+++ b/sc/source/filter/excel/frmbase.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: frmbase.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: dr $ $Date: 2001-02-06 16:16:27 $
+ * last change: $Author: dr $ $Date: 2002-01-08 07:23:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -146,6 +146,10 @@ void _ScRangeListTabs::Append( ComplRefData a, const BOOL b )
{
if( b )
{
+ // #96263# ignore 3D ranges
+ if( a.Ref1.nTab != a.Ref2.nTab )
+ return;
+
INT16& rTab = a.Ref1.nTab;
if( rTab > MAXTAB )
rTab = MAXTAB;