Salome HOME
updated copyright message
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetNameEdit.cpp
index e97666f3d8e8177e455c9fa0e55bf32b1afaaa0c..b1fa415babb316fcec9bd634698cf889ea6fc174 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  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
 //
 // You should have received a copy of the GNU Lesser General Public
 // License along with this library; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/ or
-// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
-#include <ModuleBase_WidgetNameEdit.h>
+#include "ModuleBase_WidgetNameEdit.h"
+
+#include <ModelAPI_Result.h>
 
 #include <QLineEdit>
 
+
 bool ModuleBase_WidgetNameEdit::storeValueCustom()
 {
   if(!myFeature)
     return false;
 
   QString aValue = myLineEdit->text();
-  myFeature->data()->setName(aValue.toStdString());
+  std::wstring aName = aValue.toStdWString();
+  myFeature->data()->setName(aName);
+  ResultPtr aRes = myFeature->firstResult();
+  if (aRes.get())
+    aRes->data()->setName(aName);
   updateObject(myFeature);
   return true;
 }
@@ -39,7 +45,7 @@ bool ModuleBase_WidgetNameEdit::restoreValueCustom()
     return false;
 
   bool isBlocked = myLineEdit->blockSignals(true);
-  myLineEdit->setText(QString::fromStdString(myFeature->data()->name()));
+  myLineEdit->setText(QString::fromStdWString(myFeature->data()->name()));
   myLineEdit->blockSignals(isBlocked);
 
   return true;