Salome HOME
Splitting gen compute seq/para + clean up + remove int argument + solve bug (commente...
[modules/smesh.git] / src / SMESH / SMESH_subMesh.cxx
index b28d44b4e704d9de90cd7bcb964c620268308532..b5661535a85de400479c9b1160a6a5e135fd45e9 100644 (file)
@@ -1583,7 +1583,7 @@ bool SMESH_subMesh::ComputeStateEngine(compute_event event)
           _computeError = SMESH_ComputeError::Worst( _computeError, algo->GetComputeError() );
         }
         catch ( ::SMESH_ComputeError& comperr ) {
-          cout << " SMESH_ComputeError caught" << endl;
+          MESSAGE(" SMESH_ComputeError caught");
           if ( !_computeError ) _computeError = SMESH_ComputeError::New();
           *_computeError = comperr;
         }
@@ -1651,7 +1651,7 @@ bool SMESH_subMesh::ComputeStateEngine(compute_event event)
         for (subS.ReInit(); subS.More(); subS.Next())
         {
           _father->Lock();
-          const std::list <const SMESHDS_Hypothesis *> hyps =
+          const std::list <const SMESHDS_Hypothesis *> hyps =
             _algo->GetUsedHypothesis( *_father, _subShape );
           _father->Unlock();
           SMESH_Comment hypStr;
@@ -1907,7 +1907,7 @@ bool SMESH_subMesh::ComputeStateEngine(compute_event event)
     break;
   }
 
-  //notifyListenersOnEvent( event, COMPUTE_EVENT );
+  notifyListenersOnEvent( event, COMPUTE_EVENT );
 
   return ret;
 }