X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FTransformationGUI%2FTransformationGUI_ProjectionDlg.cxx;h=2e91fc3daa8812676176055756403ada16343eee;hb=4310bcdf3dfdfdcae0e8b0f53c20d67bccba47ad;hp=33488e7e6d3ecfd5effbf374d420d659270d14c8;hpb=fdcbb781324c4683d071f8a2546aa12bd63199e7;p=modules%2Fgeom.git diff --git a/src/TransformationGUI/TransformationGUI_ProjectionDlg.cxx b/src/TransformationGUI/TransformationGUI_ProjectionDlg.cxx index 33488e7e6..2e91fc3da 100644 --- a/src/TransformationGUI/TransformationGUI_ProjectionDlg.cxx +++ b/src/TransformationGUI/TransformationGUI_ProjectionDlg.cxx @@ -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 TransformationGUI_ProjectionDlg::getSourceObjects() +{ + QList res; + res << myObject1 << myObject2; + return res; +}