Salome HOME
Bug IPAL19361 - Qt4 porting. It is impossible showing ID of elements in 3D Viewer... V5_0_0a1 V5_0_0a2 VSR_280308
authorouv <ouv@opencascade.com>
Fri, 28 Mar 2008 11:24:53 +0000 (11:24 +0000)
committerouv <ouv@opencascade.com>
Fri, 28 Mar 2008 11:24:53 +0000 (11:24 +0000)
src/GEOMGUI/GEOMGUI_Selection.cxx
src/GEOMGUI/GEOMGUI_Selection.h
src/GEOMGUI/GeometryGUI.cxx
src/GEOMGUI/GeometryGUI.h

index 268ef012401a0505fdcf71a360a6908dccf28a3f..af266c29842d00068b4eaed54508dab773daf614 100644 (file)
@@ -54,8 +54,8 @@
 // VTK Includes
 #include <vtkActorCollection.h>
 
-GEOMGUI_Selection::GEOMGUI_Selection( const QString& client, LightApp_SelectionMgr* mgr )
-: LightApp_Selection( client, mgr )
+GEOMGUI_Selection::GEOMGUI_Selection()
+: LightApp_Selection()
 {
 }
 
index 7ab55713d0de6f2362c728ffc4d188112c12fcb7..5d470195c718d7b3977912ce130e971de2f161db 100644 (file)
@@ -36,7 +36,7 @@ class LightApp_SelectionMgr;
 class GEOMGUI_EXPORT GEOMGUI_Selection : public LightApp_Selection
 {
 public:
-  GEOMGUI_Selection( const QString&, LightApp_SelectionMgr* );
+  GEOMGUI_Selection();
   virtual ~GEOMGUI_Selection();
 
   virtual QVariant      parameter( const int, const QString& ) const;
index 2058d7a2ea2473bc2645adfcdfd1b5068cfb3ad5..257eb0e36b164536bb1297dcf5cf4baa512f699e 100644 (file)
@@ -1378,9 +1378,9 @@ QString GeometryGUI::engineIOR() const
   return "";
 }
 
-LightApp_Selection* GeometryGUI::createSelection( const QString& client, LightApp_SelectionMgr* mgr ) const
+LightApp_Selection* GeometryGUI::createSelection() const
 {
-  return new GEOMGUI_Selection( client, mgr );
+  return new GEOMGUI_Selection();
 }
 
 void GeometryGUI::contextMenuPopup( const QString& client, QMenu* menu, QString& title )
index 54884333c0f562794da1ecff3b142c86b185dbde..7477ac6007cc12ea0ff54b4c70ff6ea2588cd2cd 100644 (file)
@@ -141,7 +141,7 @@ signals :
   void                        SignalDefaultStepValueChanged( double newVal );
 
 protected:
-  virtual LightApp_Selection* createSelection( const QString&, LightApp_SelectionMgr* ) const;
+  virtual LightApp_Selection* createSelection() const;
 
 private:
   GEOMGUI*                    getLibrary( const QString& libraryName );