X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FExchangePlugin%2FExchangePlugin_Tools.cpp;h=d369df2fcd8ff1cf50fa13de08fbcaa119d46fd5;hb=b625a28efae6fabb8606080db03a24d7fefe0215;hp=e60c104e2df189507cda09e53b99dce4a7313d15;hpb=82beaf3018c2932ab40753f2ef7f0834b4ab43b5;p=modules%2Fshaper.git diff --git a/src/ExchangePlugin/ExchangePlugin_Tools.cpp b/src/ExchangePlugin/ExchangePlugin_Tools.cpp index e60c104e2..d369df2fc 100644 --- a/src/ExchangePlugin/ExchangePlugin_Tools.cpp +++ b/src/ExchangePlugin/ExchangePlugin_Tools.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2019 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 @@ -34,8 +33,6 @@ std::list ExchangePlugin_Tools::split(const std::string& theString, std::string ExchangePlugin_Tools::selectionType2xaoDimension(const std::string& theType) { - // if the selection is done in the GUI, the type is lower case - // if the selection is done in python, the type is in upper case if (theType == "Vertices" || theType == "vertex" || theType == "VERTEX") return "vertex"; else if (theType == "Edges" || theType == "edge" || theType == "EDGE") @@ -44,8 +41,8 @@ std::string ExchangePlugin_Tools::selectionType2xaoDimension(const std::string& return "face"; else if (theType == "Solids" || theType == "solid" || theType == "SOLID") return "solid"; - else if (theType == "Part" || theType == "part") - return "part"; + else if (theType == "Part" || theType == "part" || theType == "PART") + return "whole"; return std::string(); }