class TEnbleGridEvent: public SALOME_Event{
public:
- typedef void (Plot2d_ViewFrame::* TFun)(bool, const int, bool, const int, bool = true);
+ typedef void (Plot2d_ViewFrame::* TFun)(bool, const int, bool, const int, bool);
TEnbleGridEvent(Plot2d_ViewFrame* theView, TFun theFun,
CORBA::Boolean theMajor, CORBA::Long theNumMajor,
CORBA::Boolean theMinor, CORBA::Long theNumMinor):
class TSetScaleModeEvent: public SALOME_Event{
public:
- typedef void (Plot2d_ViewFrame::* TFun)(const int, bool = true);
+ typedef void (Plot2d_ViewFrame::* TFun)(const int, bool);
TSetScaleModeEvent(Plot2d_ViewFrame* theView, TFun theFun, int theScaling):
myView(theView), myFun(theFun), myScaling(theScaling)
{}
class TSetTitleEvent: public SALOME_Event{
public:
- typedef void (Plot2d_ViewFrame::* TFun)(bool, const QString&, bool = true);
+ typedef void (Plot2d_ViewFrame::* TFun)(bool, const QString&, bool);
TSetTitleEvent(Plot2d_ViewFrame* theView, TFun theFun, const char* theTitle):
myView(theView), myFun(theFun), myTitle(theTitle)
{}