X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomValidators%2FGeomValidators_IntersectionSelection.cpp;h=b539b8748355450bf20ae83bfaa028522e1076fb;hb=97c06c5cd9fc736f9b5a1dacde369a9d7b5be703;hp=57a8b9ccfafe8ed2b1fb5515b55d6105c7541e08;hpb=2532fb2df83ee1ddd9ff3e8b381d3788eaa15b69;p=modules%2Fshaper.git diff --git a/src/GeomValidators/GeomValidators_IntersectionSelection.cpp b/src/GeomValidators/GeomValidators_IntersectionSelection.cpp index 57a8b9ccf..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,9 +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" @@ -44,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;