summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-07-09 01:47:21 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-07-09 01:52:07 +0200
commitc3b6e14db7a8134a49da7bdb12d351cddcc866d5 (patch)
tree6853ffa92e0f82fb433a1f00c5b8431ff38dbedd
parent25bd4f0566e634037ce8d4fb94abe8b351625249 (diff)
performance problem with this commit
Change-Id: I59bca684afcc1c51ecff3c6444ad1fd4b2b520e8
-rw-r--r--sc/source/filter/excel/xetable.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xetable.cxx b/sc/source/filter/excel/xetable.cxx
index 150c730f5169..69db2be39527 100644
--- a/sc/source/filter/excel/xetable.cxx
+++ b/sc/source/filter/excel/xetable.cxx
@@ -2208,7 +2208,7 @@ XclExpCellTable::XclExpCellTable( const XclExpRoot& rRoot ) :
// find used area (non-empty cells)
SCCOL nLastUsedScCol;
SCROW nLastUsedScRow;
- rDoc.GetFormattedAndUsedArea( nScTab, nLastUsedScCol, nLastUsedScRow );
+ rDoc.GetTableArea( nScTab, nLastUsedScCol, nLastUsedScRow );
if(nLastUsedScCol > nMaxScCol)
nLastUsedScCol = nMaxScCol;