diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2011-06-12 23:18:17 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2011-06-12 23:18:17 +0200 |
commit | 5d54fc918fc63c9ac844c6d02df45daa2a86f993 (patch) | |
tree | 24dd829737935e967dafa345dbd685db9aa0cb69 /oox/source/xls/sheetdatabuffer.cxx | |
parent | 5cfb91df40675d81131200d8cce918ae108efb31 (diff) |
Some cppcheck cleaning+1TODO (func not implemented)
Diffstat (limited to 'oox/source/xls/sheetdatabuffer.cxx')
-rwxr-xr-x | oox/source/xls/sheetdatabuffer.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/xls/sheetdatabuffer.cxx b/oox/source/xls/sheetdatabuffer.cxx index 6227cfb2f68f..4eb1349e9438 100755 --- a/oox/source/xls/sheetdatabuffer.cxx +++ b/oox/source/xls/sheetdatabuffer.cxx @@ -545,7 +545,7 @@ void SheetDataBuffer::finalizeImport() // write default formatting of remaining row range writeXfIdRowRangeProperties( maXfIdRowRange ); - for( XfIdRangeListMap::const_iterator aIt = maXfIdRangeLists.begin(), aEnd = maXfIdRangeLists.end(); aIt != aEnd; aIt++ ) + for( XfIdRangeListMap::const_iterator aIt = maXfIdRangeLists.begin(), aEnd = maXfIdRangeLists.end(); aIt != aEnd; ++aIt ) writeXfIdRangeListProperties( aIt->first.first, aIt->first.second, aIt->second ); // merge all cached merged ranges and update right/bottom cell borders @@ -824,7 +824,7 @@ void SheetDataBuffer::setCellFormat( const CellModel& rModel, sal_Int32 nNumFmtI } else break; - aItM++; + ++aItM; } // update merged ranges for 'center across selection' and 'fill' |