X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_ObjectsBrowser.cpp;h=34c113f2cdc01ef0a3b68fe714316684678d9a95;hb=88ee9b2b81cf93a6324336b57e30cc8a3a487499;hp=75543ff5c9d92d572f1c6357e80a01c3429c264e;hpb=59d7c196ce4f5ed43cb550ee5caecd68676abfb3;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_ObjectsBrowser.cpp b/src/XGUI/XGUI_ObjectsBrowser.cpp index 75543ff5c..34c113f2c 100644 --- a/src/XGUI/XGUI_ObjectsBrowser.cpp +++ b/src/XGUI/XGUI_ObjectsBrowser.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// Copyright (C) 2014-2022 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 @@ -73,7 +73,7 @@ public: XGUI_DataModel* aModel = myTreedView->dataModel(); ObjectPtr aObj = aModel->object(index); if (aObj.get() != NULL) { - aEditor->setText(aObj->data()->name().c_str()); + aEditor->setText(QString::fromStdWString(aObj->data()->name())); return; } } @@ -131,7 +131,7 @@ void XGUI_DataTree::commitData(QWidget* theEditor) if (XGUI_Tools::canRename(aObj, aName)) { SessionPtr aMgr = ModelAPI_Session::get(); aMgr->startOperation("Rename"); - aObj->data()->setName(qPrintable(aName)); + aObj->data()->setName(aName.toStdWString()); aMgr->finishOperation(); } } @@ -618,8 +618,8 @@ void XGUI_ObjectsBrowser::clearContent() } //*************************************************** -void XGUI_ObjectsBrowser::onSelectionChanged(const QItemSelection& theSelected, - const QItemSelection& theDeselected) +void XGUI_ObjectsBrowser::onSelectionChanged(const QItemSelection& /*theSelected*/, + const QItemSelection& /*theDeselected*/) { onSelectionChanged(); }