X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomValidators%2FGeomValidators_IntersectionSelection.cpp;h=b539b8748355450bf20ae83bfaa028522e1076fb;hb=97c06c5cd9fc736f9b5a1dacde369a9d7b5be703;hp=0100988007bf5812e038acc1140d7e1b61cb29ce;hpb=a94fc319f2aa64b43c9a73b5ff7063923648faec;p=modules%2Fshaper.git diff --git a/src/GeomValidators/GeomValidators_IntersectionSelection.cpp b/src/GeomValidators/GeomValidators_IntersectionSelection.cpp index 010098800..b539b8748 100644 --- a/src/GeomValidators/GeomValidators_IntersectionSelection.cpp +++ b/src/GeomValidators/GeomValidators_IntersectionSelection.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 "GeomValidators_IntersectionSelection.h" @@ -45,12 +44,18 @@ bool GeomValidators_IntersectionSelection::isValid(const AttributePtr& theAttrib theError = "Error: empty attribute selection."; return false; } + FeaturePtr aFeature; ResultPtr aContext = anAttrSelection->context(); if(!aContext.get()) { - theError = "Error: empty selection context."; - return false; + aFeature = anAttrSelection->contextFeature(); + if (!aFeature.get()) { + theError = "Error: Empty selection context."; + return false; + } + } else { + aFeature = ModelAPI_Feature::feature(aContext); } - FeaturePtr aFeature = ModelAPI_Feature::feature(aContext); + if(!aFeature.get()) { theError = "Error: empty feature."; return false;