]> SALOME platform Git repositories - plugins/blsurfplugin.git/commitdiff
Salome HOME
Notify Mesh modified on delete size map
authorgdd <gdd>
Wed, 18 Feb 2009 14:06:20 +0000 (14:06 +0000)
committergdd <gdd>
Wed, 18 Feb 2009 14:06:20 +0000 (14:06 +0000)
src/BLSURFPlugin/BLSURFPlugin_Hypothesis.cxx

index d22a9416ee90d2e91529b51d7c9871fbc27a2051..58e4a74f7e65a798cfca9fc0a93578a349f6c605 100644 (file)
@@ -357,8 +357,10 @@ std::string  BLSURFPlugin_Hypothesis::GetSizeMapEntry(const std::string& entry)
 void BLSURFPlugin_Hypothesis::ClearEntry(const std::string& entry)
 {
  TSizeMap::iterator it  = _sizeMap.find( entry );
- if ( it != _sizeMap.end() )
+ if ( it != _sizeMap.end() ) {
    _sizeMap.erase(it);
+   NotifySubMeshesHypothesisModification();
+ }
  else
    std::cout<<"No_Such_Entry"<<std::endl;
 }