X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetSelectorStore.cpp;h=03ca315d61d632b40a13ad733417b26c0614eadb;hb=cd3e66b2f07a49646c344406b7236819d53f5ae9;hp=d9ed9a3667230915424e70dbd0bad1134cf757fc;hpb=30c051954fe28016ee74f7aaf851dbdec4249d8c;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetSelectorStore.cpp b/src/ModuleBase/ModuleBase_WidgetSelectorStore.cpp old mode 100755 new mode 100644 index d9ed9a366..03ca315d6 --- a/src/ModuleBase/ModuleBase_WidgetSelectorStore.cpp +++ b/src/ModuleBase/ModuleBase_WidgetSelectorStore.cpp @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: ModuleBase_WidgetSelectorStore.cpp -// Created: 2 June 2014 -// Author: Vitaly Smetannikov +// Copyright (C) 2014-2020 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 +// #include #include @@ -61,7 +74,7 @@ void ModuleBase_WidgetSelectorStore::restoreAttributeValue(const AttributePtr& t { std::string aType = theAttribute->attributeType(); if (aType == ModelAPI_AttributeSelectionList::typeId()) { - AttributeSelectionListPtr aSelectionListAttr = + AttributeSelectionListPtr aSelectionListAttr = std::dynamic_pointer_cast(theAttribute); aSelectionListAttr->setSelectionType(mySelectionType); // restore selection in the attribute. Indeed there is only one stored object @@ -70,7 +83,7 @@ void ModuleBase_WidgetSelectorStore::restoreAttributeValue(const AttributePtr& t aSelectionListAttr->removeLast(); } else if (aType == ModelAPI_AttributeRefList::typeId()) { - AttributeRefListPtr aRefListAttr = + AttributeRefListPtr aRefListAttr = std::dynamic_pointer_cast(theAttribute); // restore objects in the attribute. Indeed there is only one stored object int aCountAppened = aRefListAttr->size() - mySelectionCount; @@ -87,7 +100,7 @@ void ModuleBase_WidgetSelectorStore::restoreAttributeValue(const AttributePtr& t } else { ModuleBase_Tools::setObject(theAttribute, myObject, myShape, theWorkshop, true, true); - AttributeRefAttrPtr aRefAttr = + AttributeRefAttrPtr aRefAttr = std::dynamic_pointer_cast(theAttribute); if (aRefAttr) { if (!myIsObject)