]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
To remove unused methods
authorapo <apo@opencascade.com>
Wed, 17 Aug 2005 10:48:35 +0000 (10:48 +0000)
committerapo <apo@opencascade.com>
Wed, 17 Aug 2005 10:48:35 +0000 (10:48 +0000)
src/SVTK/SVTK_RenderWindowInteractor.cxx
src/SVTK/SVTK_RenderWindowInteractor.h

index 608265077cfdb2c8fe79561e09e56e532dff7d9d..966b209f6a39ef0fc0efbf19f0361a74f0652048 100644 (file)
@@ -146,28 +146,11 @@ SVTK_RenderWindowInteractor
 }
 
 // ================================== 
-void
-SVTK_RenderWindowInteractor
-::Start() 
-{
-  //
-  // We do not allow this interactor to control the 
-  // event loop. Only the QtApplication objects are
-  // allowed to do that. 
-  //
-  //vtkErrorMacro(<<"SVTK_RenderWindowInteractor::Start() not allowed to start event loop.") ;
-  return ;
-}
-
 void
 SVTK_RenderWindowInteractor
 ::UpdateSize(int w, int h) 
 {
-  // if the size changed send this on to the RenderWindow
-  if ((w != myInteractor->GetSize()[0])||(h != myInteractor->GetSize()[1])) {
-    myInteractor->SetSize( w, h );
-    getRenderWindow()->SetSize( w, h );
-  }
+  myInteractor->UpdateSize(w,h);
 }
 
 int
index eea4a8a724555e8f32e35a6f4586c917716c2774..e580626a54e46a03c3634a528e96006831f01960 100644 (file)
@@ -69,12 +69,6 @@ public:
   // want to have mouse interaction.
   virtual void Initialize();
 
-  // Description:
-  // This will start up the X event loop and never return. If you
-  // call this method it will loop processing X events until the
-  // application is exited.
-  virtual void Start();
-  
   // Description:
   // Event loop notification member for Window size change
   virtual void UpdateSize(int x,int y);