]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Porting to Mandrake 10.1 and new products: T2_2_4a T2_2_4a2
authormpv <mpv@opencascade.com>
Wed, 8 Jun 2005 05:14:40 +0000 (05:14 +0000)
committermpv <mpv@opencascade.com>
Wed, 8 Jun 2005 05:14:40 +0000 (05:14 +0000)
porting to gcc 3.4.1: troubles with predefined parameters

src/VISU_I/VISU_ViewManager_i.cc

index 5fcc3da5c8810b8ed3b78ba43a485614c5436a4b..3463d586d39b8920bd78d47d33229e8aaee139ff 100644 (file)
@@ -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;