X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FOperationGUI%2FOperationGUI_ChamferDlg.cxx;h=8be967e9af8da8d8438c1da7512e98e6a36364a4;hb=f312091eb5bf90096c0a8d4d0ed4be68f34fbd9b;hp=8b16e06d3ce2ca3da12c994c4eed9a8d8437b842;hpb=ff7fc4d6c2f5e6de741fd7f0b9ebf01de04d0e10;p=modules%2Fgeom.git diff --git a/src/OperationGUI/OperationGUI_ChamferDlg.cxx b/src/OperationGUI/OperationGUI_ChamferDlg.cxx index 8b16e06d3..8be967e9a 100644 --- a/src/OperationGUI/OperationGUI_ChamferDlg.cxx +++ b/src/OperationGUI/OperationGUI_ChamferDlg.cxx @@ -966,3 +966,15 @@ void OperationGUI_ChamferDlg::RadioButtonPressed() processPreview(); } + +//================================================================================= +// function : getSourceObjects +// purpose : virtual method to get source objects +//================================================================================= +QList OperationGUI_ChamferDlg::getSourceObjects() +{ + QList res; + GEOM::GeomObjPtr aGeomObjPtr(myShape); + res << aGeomObjPtr; + return res; +}