Salome HOME
0022377: EDF 2752 GEOM: Add a preference in order to automatically unpublished parent...
[modules/geom.git] / src / TransformationGUI / TransformationGUI_ProjectionDlg.cxx
index 33488e7e6d3ecfd5effbf374d420d659270d14c8..2e91fc3daa8812676176055756403ada16343eee 100644 (file)
@@ -372,3 +372,14 @@ void TransformationGUI_ProjectionDlg::addSubshapesToStudy()
   GEOMBase::PublishSubObject( myObject1.get() );
   GEOMBase::PublishSubObject( myObject2.get() );
 }
+
+//=================================================================================
+// function : getSourceObjects
+// purpose  : virtual method to get source objects
+//=================================================================================
+QList<GEOM::GeomObjPtr> TransformationGUI_ProjectionDlg::getSourceObjects()
+{
+  QList<GEOM::GeomObjPtr> res;
+  res << myObject1 << myObject2;
+  return res;
+}