X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPrimitivesPlugin%2FPrimitivesPlugin_Cone.cpp;h=766ad86f299a83de98ef037cbe350b97bb0f82a4;hb=88ee9b2b81cf93a6324336b57e30cc8a3a487499;hp=3f94a85d50dc54ac1f8bee2cec401c2562156514;hpb=9b61e5ee5eafe9d6948d9a78667efa2abec132c3;p=modules%2Fshaper.git diff --git a/src/PrimitivesPlugin/PrimitivesPlugin_Cone.cpp b/src/PrimitivesPlugin/PrimitivesPlugin_Cone.cpp index 3f94a85d5..766ad86f2 100644 --- a/src/PrimitivesPlugin/PrimitivesPlugin_Cone.cpp +++ b/src/PrimitivesPlugin/PrimitivesPlugin_Cone.cpp @@ -1,4 +1,21 @@ -// Copyright (C) 2014-201x CEA/DEN, EDF R&D +// Copyright (C) 2017-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 +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// 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 +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// // File: PrimitivesPlugin_Cone.cpp // Created: 17 Mar 2017 @@ -46,7 +63,7 @@ void PrimitivesPlugin_Cone::initAttributes() data()->selection(PrimitivesPlugin_Cone::BASE_POINT_ID()); if (!aCenterPoint->isInitialized()) { ObjectPtr aPointObj = ModelAPI_Session::get()->moduleDocument() - ->objectByName(ModelAPI_ResultConstruction::group(), "Origin"); + ->objectByName(ModelAPI_ResultConstruction::group(), L"Origin"); if (aPointObj.get()) { ResultPtr aPointRes = std::dynamic_pointer_cast(aPointObj); aCenterPoint->setValue(aPointRes, std::shared_ptr()); @@ -57,7 +74,7 @@ void PrimitivesPlugin_Cone::initAttributes() AttributeSelectionPtr anAxis = data()->selection(PrimitivesPlugin_Cone::AXIS_ID()); if (!anAxis->isInitialized()) { ObjectPtr anAxisObj = ModelAPI_Session::get()->moduleDocument() - ->objectByName(ModelAPI_ResultConstruction::group(), "OZ"); + ->objectByName(ModelAPI_ResultConstruction::group(), L"OZ"); if (anAxisObj.get()) { ResultPtr anAxisRes = std::dynamic_pointer_cast(anAxisObj); anAxis->setValue(anAxisRes, std::shared_ptr());