diff options
author | Muthu Subramanian <sumuthu@novell.com> | 2011-07-13 14:12:06 +0530 |
---|---|---|
committer | Muthu Subramanian <sumuthu@novell.com> | 2011-07-13 14:12:06 +0530 |
commit | b198bc73ddd0c5ae74e73775289700e2e5ce48ec (patch) | |
tree | ec09c62d3dc57bc06236e37d45587e19b9469c50 /oox/source | |
parent | c92ec84f70b14cb47cb75f2fdc5d60734650bf6d (diff) |
[Temp] Disable getCellBlock, until proper fix.
This temp-fixes formula imports and other problems
caused because of getCellBlock.
Diffstat (limited to 'oox/source')
-rwxr-xr-x | oox/source/xls/sheetdatabuffer.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/oox/source/xls/sheetdatabuffer.cxx b/oox/source/xls/sheetdatabuffer.cxx index 4eb1349e9438..04551e21840e 100755 --- a/oox/source/xls/sheetdatabuffer.cxx +++ b/oox/source/xls/sheetdatabuffer.cxx @@ -238,6 +238,9 @@ void CellBlockBuffer::setColSpans( sal_Int32 nRow, const ValueRangeSet& rColSpan CellBlock* CellBlockBuffer::getCellBlock( const CellAddress& rCellAddr ) { + // Temporarily disabled. TODO: Fix this. + return NULL; + OSL_ENSURE( rCellAddr.Row >= mnCurrRow, "CellBlockBuffer::getCellBlock - passed row out of order" ); // prepare cell blocks, if row changes if( rCellAddr.Row != mnCurrRow ) |