sc/source/filter/excel/xetable.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit c3b6e14db7a8134a49da7bdb12d351cddcc866d5 Author: Markus Mohrhard <[email protected]> Date: Mon Jul 9 01:47:21 2012 +0200 performance problem with this commit Change-Id: I59bca684afcc1c51ecff3c6444ad1fd4b2b520e8 diff --git a/sc/source/filter/excel/xetable.cxx b/sc/source/filter/excel/xetable.cxx index 150c730..69db2be 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; _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
