diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-07-09 01:47:21 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-07-09 01:47:21 +0200 |
commit | 77a7c92fb3c0b1a8a97bca107f6bfe85cb79f7c4 (patch) | |
tree | ed5abb13a1de4d61b4982dc97cbeeb0456f4cccf /sc/source | |
parent | 6c8ec4ad8e816157799cd164d9f9a837efa0f9a7 (diff) |
performance problem with this commit
Change-Id: I59bca684afcc1c51ecff3c6444ad1fd4b2b520e8
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/filter/excel/xetable.cxx | 2 |
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; |