X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetNameEdit.cpp;h=5a3a3bfbf84203cb37e35bdb602e7f7f75266ae4;hb=aba714fbb23139b15272ed816c9a30595165106c;hp=d12f7c9ed2dea948e6018885c36dff55954358e2;hpb=43a56ddb326b92ac45bfc823686b132685793203;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetNameEdit.cpp b/src/ModuleBase/ModuleBase_WidgetNameEdit.cpp index d12f7c9ed..5a3a3bfbf 100644 --- a/src/ModuleBase/ModuleBase_WidgetNameEdit.cpp +++ b/src/ModuleBase/ModuleBase_WidgetNameEdit.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2021 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -12,10 +12,9 @@ // // 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 +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #include "ModuleBase_WidgetNameEdit.h" @@ -31,7 +30,7 @@ bool ModuleBase_WidgetNameEdit::storeValueCustom() return false; QString aValue = myLineEdit->text(); - std::string aName = aValue.toStdString(); + std::wstring aName = aValue.toStdWString(); myFeature->data()->setName(aName); ResultPtr aRes = myFeature->firstResult(); if (aRes.get()) @@ -46,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;