Salome HOME
0022377: EDF 2752 GEOM: Add a preference in order to automatically unpublished parent...
[modules/geom.git] / src / TransformationGUI / TransformationGUI_MirrorDlg.cxx
index 55d91b35221abdd266bf45e7367a6e770ca6db64..ce56c62659759af72f4cdb2d555063f1cf2acaf4 100644 (file)
@@ -454,3 +454,14 @@ void TransformationGUI_MirrorDlg::addSubshapesToStudy()
     }
   }
 }
+
+//=================================================================================
+// function : getSourceObjects
+// purpose  : virtual method to get source objects
+//=================================================================================
+QList<GEOM::GeomObjPtr> TransformationGUI_MirrorDlg::getSourceObjects()
+{
+  QList<GEOM::GeomObjPtr> res(myObjects);
+  res << myArgument;
+  return res;
+}