]> SALOME platform Git repositories - modules/geom.git/blobdiff - src/TransformationGUI/TransformationGUI_ScaleDlg.cxx
Salome HOME
0022377: EDF 2752 GEOM: Add a preference in order to automatically unpublished parent...
[modules/geom.git] / src / TransformationGUI / TransformationGUI_ScaleDlg.cxx
index 8cbf3495cdc3bcd0494232f9177d0a0b163b5ce1..0e3767ef38503bc8594961de37779330444c13f0 100644 (file)
@@ -533,3 +533,14 @@ void TransformationGUI_ScaleDlg::addSubshapesToStudy()
     GEOMBase::PublishSubObject( myPoint.get() );
   }
 }
+
+//=================================================================================
+// function : getSourceObjects
+// purpose  : virtual method to get source objects
+//=================================================================================
+QList<GEOM::GeomObjPtr> TransformationGUI_ScaleDlg::getSourceObjects()
+{
+  QList<GEOM::GeomObjPtr> res(myObjects);
+  res << myPoint;
+  return res;
+}