X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=inline;f=src%2FExchangePlugin%2FExchangePlugin_Tools.cpp;h=591d467c6a8cd3e825394bbb6de70dfcecff33ef;hb=1ae1787a61b0d13cc78d34200e9f2513d32ed382;hp=f10f316dc51db804a0d1ec6748ad475e0599c0b4;hpb=7682a78bed5d4f6943857135948bd9083dfe71f2;p=modules%2Fshaper.git diff --git a/src/ExchangePlugin/ExchangePlugin_Tools.cpp b/src/ExchangePlugin/ExchangePlugin_Tools.cpp index f10f316dc..591d467c6 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-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 @@ -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") @@ -45,7 +42,7 @@ std::string ExchangePlugin_Tools::selectionType2xaoDimension(const std::string& else if (theType == "Solids" || theType == "solid" || theType == "SOLID") return "solid"; else if (theType == "Part" || theType == "part" || theType == "PART") - return "part"; + return "whole"; return std::string(); }