Salome HOME
"Internal" feature XML procesing. Fixes #40
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Feature.cpp
index 6f8f41af8d3d86e28279af7e43b3ae04e3931c1e..ae771b5567b1dff3cc71ac5f52d9c4b15ff95969 100644 (file)
@@ -26,20 +26,16 @@ SketchPlugin_Sketch* SketchPlugin_Feature::sketch()
     // find sketch that references to this feature
     int aSketches = document()->size("Construction");
     for(int a = 0; a < aSketches && !mySketch; a++) {
-      boost::shared_ptr<ModelAPI_Object> anObj = 
-        boost::dynamic_pointer_cast<ModelAPI_Object>(document()->feature("Construction", a));
-      if (anObj) {
-        boost::shared_ptr<SketchPlugin_Sketch> aSketch = 
-          boost::dynamic_pointer_cast<SketchPlugin_Sketch>(anObj->featureRef());
-        if (aSketch) {
-          std::list<boost::shared_ptr<ModelAPI_Feature> > aList = 
-            aSketch->data()->reflist(SKETCH_ATTR_FEATURES)->list();
-          std::list<boost::shared_ptr<ModelAPI_Feature> >::iterator aSub = aList.begin();
-          for(; aSub != aList.end(); aSub++) {
-            if ((*aSub)->data()->isEqual(data())) {
-              mySketch = aSketch.get();
-              break;
-            }
+      boost::shared_ptr<SketchPlugin_Sketch> aSketch = boost::
+        dynamic_pointer_cast<SketchPlugin_Sketch>(document()->feature("Construction", a, true));
+      if (aSketch) {
+        std::list<boost::shared_ptr<ModelAPI_Feature> > aList = 
+          aSketch->data()->reflist(SKETCH_ATTR_FEATURES)->list();
+        std::list<boost::shared_ptr<ModelAPI_Feature> >::iterator aSub = aList.begin();
+        for(; aSub != aList.end(); aSub++) {
+          if ((*aSub)->data()->isEqual(data())) {
+            mySketch = aSketch.get();
+            break;
           }
         }
       }