Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / PartSetPlugin / PartSetPlugin_Duplicate.cpp
index 28c8ce3defba9d875f50bba959f1f6502ce5edab..a2f006fa42880133ca20e36835d2a5f534517cf3 100644 (file)
@@ -20,21 +20,20 @@ void PartSetPlugin_Duplicate::initAttributes()
   PartSetPlugin_Part::initAttributes();
   data()->addAttribute(ORIGIN_REF(), ModelAPI_AttributeRefAttr::type());
 
-  boost::shared_ptr<ModelAPI_PluginManager> aPManager = ModelAPI_PluginManager::get();
-  boost::shared_ptr<ModelAPI_Document> aRoot = aPManager->rootDocument();
-  boost::shared_ptr<ModelAPI_ResultPart> aSource; // searching for source document attribute
-  for(int a = aRoot->size(getGroup()) - 1; a >= 0; a--) {
+  boost::shared_ptr<ModelAPI_Session> aPManager = ModelAPI_Session::get();
+  boost::shared_ptr<ModelAPI_Document> aRoot = aPManager->moduleDocument();
+  boost::shared_ptr<ModelAPI_ResultPart> aSource;  // searching for source document attribute
+  for (int a = aRoot->size(getGroup()) - 1; a >= 0; a--) {
     aSource = boost::dynamic_pointer_cast<ModelAPI_ResultPart>(aRoot->object(getGroup(), a));
-    if (aSource && aSource->data() && 
-        aSource->data()->docRef(ModelAPI_ResultPart::DOC_REF())->value() == 
-        aPManager->currentDocument())
+    if (aSource && aSource->data()
+        && aSource->data()->document(ModelAPI_ResultPart::DOC_REF())->value()
+            == aPManager->activeDocument())
       break;
     aSource.reset();
   }
   if (aSource) {
     boost::shared_ptr<ModelAPI_Document> aCopy = aPManager->copy(
-      aSource->data()->docRef(ModelAPI_ResultPart::DOC_REF())->value(),
-      data()->name());
+        aSource->data()->document(ModelAPI_ResultPart::DOC_REF())->value(), data()->name());
     data()->refattr(ORIGIN_REF())->setObject(aSource);
   }
 }