CWS-TOOLING: integrate CWS cmcfixes66

This commit is contained in:
Kurt Zenker 2009-11-13 19:16:08 +01:00
commit 2650f297c3
2 changed files with 4 additions and 4 deletions

View file

@ -1233,8 +1233,8 @@ void ScColumn::InsertRow( SCROW nStartRow, SCSIZE nSize )
}
}
delete pDelRows;
delete ppDelCells;
delete [] pDelRows;
delete [] ppDelCells;
}
pDocument->SetAutoCalc( bOldAutoCalc );

View file

@ -276,8 +276,8 @@ BOOL ScTpSubTotalGroup::DoFillItemSet( USHORT nGroupNo,
rArgSet.Put( ScSubTotalItem( SCITEM_SUBTDATA, &theSubTotalData ) );
if ( pSubTotals ) delete pSubTotals;
if ( pFunctions ) delete pFunctions;
if ( pSubTotals ) delete [] pSubTotals;
if ( pFunctions ) delete [] pFunctions;
return TRUE;
}