PAL9522 - do not abort on hypothesis assignation failure

This commit is contained in:
eap 2005-07-20 11:33:52 +00:00
parent ecc072736c
commit c92f2b483c

View File

@ -291,8 +291,8 @@ bool SMESHGUI_InitMeshDlg::ClickOnApply()
if (!aHyp->_is_nil()) { if (!aHyp->_is_nil()) {
if (!SMESH::AddHypothesisOnMesh(aMesh, aHyp)) { if (!SMESH::AddHypothesisOnMesh(aMesh, aHyp)) {
// abort transaction // abort transaction
op->abort(); // op->abort();
return false; // return false;
} }
} }
} }
@ -309,8 +309,8 @@ bool SMESHGUI_InitMeshDlg::ClickOnApply()
if (!aHyp->_is_nil()) { if (!aHyp->_is_nil()) {
if (!SMESH::AddHypothesisOnMesh(aMesh, aHyp)) { if (!SMESH::AddHypothesisOnMesh(aMesh, aHyp)) {
// abort transaction // abort transaction
op->abort(); // op->abort();
return false; // return false;
} }
} }
} }