X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSetPlugin%2FPartSetPlugin_Remove.cpp;h=d74666a65b208b0ee6bee701ff630f5e2942fd6d;hb=7b4a6a2a335d41a647e0f6a6becb7c23df042be1;hp=3f2cd80fe609d6724d1c41f30247cae83bbba9db;hpb=9e869ede4d8c56262bb20534543c2bf56cd6a91b;p=modules%2Fshaper.git diff --git a/src/PartSetPlugin/PartSetPlugin_Remove.cpp b/src/PartSetPlugin/PartSetPlugin_Remove.cpp index 3f2cd80fe..d74666a65 100644 --- a/src/PartSetPlugin/PartSetPlugin_Remove.cpp +++ b/src/PartSetPlugin/PartSetPlugin_Remove.cpp @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: PartSetPlugin_Remove.cxx // Created: 20 May 2014 // Author: Mikhail PONIKAROV @@ -9,25 +11,24 @@ #include #include #include +#include +#include void PartSetPlugin_Remove::execute() { std::shared_ptr aPManager = ModelAPI_Session::get(); std::shared_ptr aRoot = aPManager->moduleDocument(); - std::shared_ptr aCurrent; - std::shared_ptr a; - for (int a = aRoot->size(ModelAPI_ResultPart::group()) - 1; a >= 0; a--) { - ResultPartPtr aPart = std::dynamic_pointer_cast( - aRoot->object(ModelAPI_ResultPart::group(), a)); - if (aPart - && aPart->data()->document(ModelAPI_ResultPart::DOC_REF())->value() - == aPManager->activeDocument()) { - FeaturePtr aFeature = aRoot->feature(aPart); - if (aFeature) { - // do remove - aPart->data()->document(ModelAPI_ResultPart::DOC_REF())->value()->close(); + DocumentPtr aThisDoc = document(); + ResultPtr aPart = ModelAPI_Tools::findPartResult(aRoot, aThisDoc); + if (aPart.get()) { + FeaturePtr aFeature = aRoot->feature(aPart); + if (aFeature) { + // do remove + aPart->data()->document(ModelAPI_ResultPart::DOC_REF())->value()->close(); + std::set > aRefFeatures; + aRoot->refsToFeature(aFeature, aRefFeatures); + if (aRefFeatures.empty()) aRoot->removeFeature(aFeature); - } } } }