From: mpv Date: Wed, 8 Jun 2005 05:14:40 +0000 (+0000) Subject: Porting to Mandrake 10.1 and new products: X-Git-Tag: T2_2_4a X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=6842dcbb4e2d4650e001db5c9a29dc71c1ce0d9a;p=modules%2Fvisu.git Porting to Mandrake 10.1 and new products: porting to gcc 3.4.1: troubles with predefined parameters --- diff --git a/src/VISU_I/VISU_ViewManager_i.cc b/src/VISU_I/VISU_ViewManager_i.cc index 5fcc3da5..3463d586 100644 --- a/src/VISU_I/VISU_ViewManager_i.cc +++ b/src/VISU_I/VISU_ViewManager_i.cc @@ -803,7 +803,7 @@ namespace VISU{ myMinor(theMinor), myNumMinor(theNumMinor) {} virtual void Execute(){ - (myView->*myFun)(myMajor,myNumMajor,myMinor,myNumMinor); + (myView->*myFun)(myMajor,myNumMajor,myMinor,myNumMinor, true); } protected: Plot2d_ViewFrame* myView; @@ -834,7 +834,7 @@ namespace VISU{ myView(theView), myFun(theFun), myScaling(theScaling) {} virtual void Execute(){ - (myView->*myFun)(myScaling); + (myView->*myFun)(myScaling, true); } protected: Plot2d_ViewFrame* myView; @@ -868,7 +868,7 @@ namespace VISU{ myView(theView), myFun(theFun), myTitle(theTitle) {} virtual void Execute(){ - (myView->*myFun)(true,myTitle); + (myView->*myFun)(true,myTitle,true); } protected: Plot2d_ViewFrame* myView;