From: eap Date: Tue, 20 Dec 2005 13:57:13 +0000 (+0000) Subject: fix PAL10974. Call CleanDependants() instead of X-Git-Tag: T_Before_Join_BR_3_1_0deb~7 X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=commitdiff_plain;h=493903908df7452e11b897938a8dead1835185f8 fix PAL10974. Call CleanDependants() instead of RemoveSubMeshElementsAndNodes() before algo->Compute() --- diff --git a/src/SMESH/SMESH_subMesh.cxx b/src/SMESH/SMESH_subMesh.cxx index 777c09103..100a59560 100644 --- a/src/SMESH/SMESH_subMesh.cxx +++ b/src/SMESH/SMESH_subMesh.cxx @@ -1244,7 +1244,8 @@ bool SMESH_subMesh::ComputeStateEngine(int event) break; } // compute - RemoveSubMeshElementsAndNodes(); + CleanDependants(); + //RemoveSubMeshElementsAndNodes(); //removeSubMesh( _meshDS, _subShape ); if (!algo->NeedDescretBoundary() && !algo->OnlyUnaryInput()) ret = ApplyToCollection( algo, GetCollection( gen, algo ) );