You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by le...@apache.org on 2012/11/08 10:35:40 UTC

svn commit: r1406980 - /incubator/ooo/trunk/main/sc/source/filter/excel/xetable.cxx

Author: leiw
Date: Thu Nov  8 09:35:39 2012
New Revision: 1406980

URL: http://svn.apache.org/viewvc?rev=1406980&view=rev
Log:
#i121200 [Regression][Automation][Performance]Severe downgrade to save xls sample files. 

          Patch by: Zhang Lu
          Review by: Wang Lei

Modified:
    incubator/ooo/trunk/main/sc/source/filter/excel/xetable.cxx

Modified: incubator/ooo/trunk/main/sc/source/filter/excel/xetable.cxx
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/sc/source/filter/excel/xetable.cxx?rev=1406980&r1=1406979&r2=1406980&view=diff
==============================================================================
--- incubator/ooo/trunk/main/sc/source/filter/excel/xetable.cxx (original)
+++ incubator/ooo/trunk/main/sc/source/filter/excel/xetable.cxx Thu Nov  8 09:35:39 2012
@@ -2359,6 +2359,7 @@ XclExpCellTable::XclExpCellTable( const 
     SCCOL nLastIterScCol = nMaxScCol;
     SCROW nLastIterScRow = ulimit_cast< SCROW >( nLastUsedScRow + 128, nMaxScRow );
 	// modified for 119707 by zhanglu
+	/*
 	SCCOL rEndColAtt = 0;
 	SCROW rEndRowAtt = 0;
 	rDoc.GetLastAttrCell( nScTab, rEndColAtt,rEndRowAtt ); // To get the real last cell's row number, which has visual data or attribute.
@@ -2367,6 +2368,7 @@ XclExpCellTable::XclExpCellTable( const 
 
 	if (nLastIterScRow > nMaxScRow)
 		nLastIterScRow = nMaxScRow;
+		*/
 	// modified for 119707 end
     ScUsedAreaIterator aIt( &rDoc, nScTab, 0, 0, nLastIterScCol, nLastIterScRow );