]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Bug IPAL19361 - Qt4 porting. It is impossible showing ID of elements in 3D Viewer... V5_0_0a1 VSR_280308
authorouv <ouv@opencascade.com>
Fri, 28 Mar 2008 11:22:11 +0000 (11:22 +0000)
committerouv <ouv@opencascade.com>
Fri, 28 Mar 2008 11:22:11 +0000 (11:22 +0000)
src/VISUGUI/VisuGUI.cxx
src/VISUGUI/VisuGUI.h
src/VISUGUI/VisuGUI_PopupTools.h

index 7065861f832d67ebcb353ccca9c1a7923f1732d7..91473f3a23c5cb53f2809efdc2240c714c0ce617 100644 (file)
@@ -2966,9 +2966,9 @@ VisuGUI
 
 LightApp_Selection*
 VisuGUI
-::createSelection( const QString& client, LightApp_SelectionMgr* mgr ) const
+::createSelection() const
 {
-  return new VisuGUI_Selection( (SalomeApp_Module*)this, client, mgr );
+  return new VisuGUI_Selection( (SalomeApp_Module*)this );
 }
 
 //******************************************************************
index 683715244910710d4edf0ae65543be6503b9ad57..536a45a3ea4629e16d71bf972e36bb85f6eff5e4 100644 (file)
@@ -177,7 +177,7 @@ protected slots:
   void OnMultiprChangeRes(VISU::Result::Resolution theResolution);
 
 protected:
-  virtual LightApp_Selection* createSelection( const QString&, LightApp_SelectionMgr* ) const;
+  virtual LightApp_Selection* createSelection() const;
 
   void OnTimeAnimation(VISU::Animation::AnimationMode theMode);
 
index 35786cf608a0e8adede4d1405c268c96eeb030e0..8ab909adbb299f5367b2878587a75d59e696f094 100644 (file)
@@ -40,8 +40,8 @@ class SalomeApp_Study;
 class VisuGUI_Selection : public LightApp_Selection
 {
 public:
-  VisuGUI_Selection( SalomeApp_Module* theModule, const QString& client, LightApp_SelectionMgr* mgr)
-    : LightApp_Selection( client, mgr ), myModule( theModule ) {};
+  VisuGUI_Selection( SalomeApp_Module* theModule )
+    : LightApp_Selection(), myModule( theModule ) {};
   virtual ~VisuGUI_Selection() {};
 
   virtual QVariant parameter( const int, const QString& ) const;