summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/excdoc.cxx
diff options
context:
space:
mode:
authorMikhail Voytenko <mav@openoffice.org>2010-06-18 14:32:18 +0200
committerMikhail Voytenko <mav@openoffice.org>2010-06-18 14:32:18 +0200
commit4817dc1feb9c6e5942e35d15354e0bc357b17e29 (patch)
tree8c6e7eb176d426cf8ebf1e7de992557f9200ca77 /sc/source/filter/excel/excdoc.cxx
parent0cbaf3f198736a6a19ce3ac3ec818cc1eff16f16 (diff)
parent1d1b3baf8942031e2f1a7189ed121b32188f82fb (diff)
rebase to m83
Diffstat (limited to 'sc/source/filter/excel/excdoc.cxx')
-rw-r--r--sc/source/filter/excel/excdoc.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/filter/excel/excdoc.cxx b/sc/source/filter/excel/excdoc.cxx
index bba1543dd403..5534f8e775a9 100644
--- a/sc/source/filter/excel/excdoc.cxx
+++ b/sc/source/filter/excel/excdoc.cxx
@@ -437,7 +437,8 @@ void ExcTable::FillAsTable( size_t nCodeNameIdx )
DBG_ASSERT( nExcTab <= static_cast<sal_uInt16>(MAXTAB), "-ExcTable::Table(): nExcTab - no ordinary table!" );
// create a new OBJ list for this sheet (may be used by notes, autofilter, data validation)
- GetObjectManager().StartSheet();
+ if( eBiff == EXC_BIFF8 )
+ GetObjectManager().StartSheet();
// cell table: DEFROWHEIGHT, DEFCOLWIDTH, COLINFO, DIMENSIONS, ROW, cell records
mxCellTable.reset( new XclExpCellTable( GetRoot() ) );