small fix of indentation

This commit is contained in:
eap 2012-04-24 14:30:08 +00:00
parent e72b1cdc40
commit 29bfee91ff

View File

@ -4698,12 +4698,9 @@ static void findCommonSubMesh (list<const SMESH_subMesh*>& theSubMeshList,
// clear collected submeshes // clear collected submeshes
set<const SMESH_subMesh*>::iterator clrIt = subMeshToClear.begin(); set<const SMESH_subMesh*>::iterator clrIt = subMeshToClear.begin();
for ( ; clrIt != subMeshToClear.end(); clrIt++ ) { for ( ; clrIt != subMeshToClear.end(); clrIt++ )
SMESH_subMesh* sm = (SMESH_subMesh*)*clrIt; if ( SMESH_subMesh* sm = (SMESH_subMesh*)*clrIt )
if ( sm ) sm->ComputeStateEngine( SMESH_subMesh::CLEAN );
sm->ComputeStateEngine( SMESH_subMesh::CLEAN );
// ClearSubMesh( *clrIt );
}
} }
aPythonDump << " ])"; aPythonDump << " ])";