X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FStdMeshersGUI%2FStdMeshersGUI_NbSegmentsCreator.cxx;fp=src%2FStdMeshersGUI%2FStdMeshersGUI_NbSegmentsCreator.cxx;h=805cdae27c527bc6337655584bd667a5ded60c66;hb=8bd7e4737d4999c204dba61f1c065a4611f50cce;hp=58441e0781d7ab64e4947ffbe95ab1a7642101a1;hpb=c52ecc7d0e20d70cfc434324bdbe435a42e98d96;p=modules%2Fsmesh.git diff --git a/src/StdMeshersGUI/StdMeshersGUI_NbSegmentsCreator.cxx b/src/StdMeshersGUI/StdMeshersGUI_NbSegmentsCreator.cxx index 58441e078..805cdae27 100644 --- a/src/StdMeshersGUI/StdMeshersGUI_NbSegmentsCreator.cxx +++ b/src/StdMeshersGUI/StdMeshersGUI_NbSegmentsCreator.cxx @@ -88,10 +88,11 @@ bool StdMeshersGUI_NbSegmentsCreator::checkParams( QString& msg, QStringList& ab NbSegmentsHypothesisData data_old, data_new; readParamsFromHypo( data_old ); readParamsFromWidgets( data_new ); - bool res = storeParamsToHypo( data_new ); - storeParamsToHypo( data_old ); + bool res = true; res = myNbSeg->isValid( msg, absentParams, true ) && res; res = myScale->isValid( msg, absentParams, true ) && res; + res = res && storeParamsToHypo( data_new ); + res = res && storeParamsToHypo( data_old ); return res; }