mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-12-28 02:10:36 +05:00
Bug IPAL19361 - Qt4 porting. It is impossible showing ID of elements in 3D Viewer because corresponding string is missing in the pop-up menu
This commit is contained in:
parent
90400ffdc0
commit
c9714052b6
@ -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()
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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 )
|
||||
|
@ -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 );
|
||||
|
Loading…
Reference in New Issue
Block a user