Salome HOME
[bos #36169] EDF 25230 - Conversion xyz => uv => xyz. Replace all calls of ShapeAnaly...
[modules/shaper.git] / src / Config / Config_FeatureMessage.cpp
index 4728b95f8ea3beb98419f64cbbbc96bfa02e3620..09c288d7d955f7cb0e40c11dc1ab7ccffed92460 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2023  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -41,6 +41,7 @@ Config_FeatureMessage::Config_FeatureMessage(const Events_ID theId, const void*
   myIsTitleInToolbar = true;
   myIsApplyContinue = false;
   myHideFacesPanel = false;
+  myAbortConfirmation = true;
 }
 
 Config_FeatureMessage::~Config_FeatureMessage()
@@ -143,9 +144,9 @@ const std::string& Config_FeatureMessage::pluginLibrary() const
   return myPluginLibrary;
 }
 
-void Config_FeatureMessage::setPluginLibrary(const std::string& myPluginLibrary)
+void Config_FeatureMessage::setPluginLibrary(const std::string& thePluginLibrary)
 {
-  this->myPluginLibrary = myPluginLibrary;
+  this->myPluginLibrary = thePluginLibrary;
 }
 
 // LCOV_EXCL_START
@@ -250,3 +251,13 @@ void Config_FeatureMessage::setHideFacesPanel(bool theValue)
 {
   myHideFacesPanel = theValue;
 }
+
+bool Config_FeatureMessage::isAbortConfirmation() const
+{
+  return myAbortConfirmation;
+}
+
+void Config_FeatureMessage::setAbortConfirmation(bool theValue)
+{
+  myAbortConfirmation = theValue;
+}