mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-03-12 19:04:33 +05:00
*** empty log message ***
This commit is contained in:
parent
2bd09d7cc7
commit
44185d327a
@ -107,6 +107,7 @@ LIB_SRC = SMESHGUI.cxx \
|
||||
SMESHGUI_VTKUtils.cxx \
|
||||
SMESHGUI_Selection.cxx \
|
||||
SMESHGUI_CreatePolyhedralVolumeDlg.cxx \
|
||||
SMESHGUI_Dialog.cxx \
|
||||
SMESHGUI_Operation.cxx
|
||||
|
||||
LIB_MOC = \
|
||||
@ -150,6 +151,7 @@ LIB_MOC = \
|
||||
SMESHGUI_SewingDlg.h \
|
||||
SMESHGUI_PrecisionDlg.h \
|
||||
SMESHGUI_MergeNodesDlg.h \
|
||||
SMESHGUI_Dialog.h \
|
||||
SMESHGUI_CreatePolyhedralVolumeDlg.h \
|
||||
SMESHGUI_Operation.h
|
||||
|
||||
|
@ -2473,7 +2473,7 @@ void SMESHGUI::createPopupItem( const int id,
|
||||
if( pId!=-1 )
|
||||
parentId = popupMgr()->actionId( action( pId ) );
|
||||
|
||||
if( !popupMgr()->contains( popupMgr()->actionId( action( id ) ) ) )
|
||||
// if( !popupMgr()->contains( popupMgr()->actionId( action( id ) ) ) )
|
||||
popupMgr()->insert( action( id ), parentId, 0 );
|
||||
|
||||
QChar lc = QtxPopupMgr::Selection::defEquality();
|
||||
|
17
src/SMESHGUI/SMESHGUI_Dialog.cxx
Normal file
17
src/SMESHGUI/SMESHGUI_Dialog.cxx
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
#include <SMESHGUI_Dialog.h>
|
||||
#include <SMESHGUI_Utils.h>
|
||||
#include <SMESHGUI.h>
|
||||
|
||||
#include <SUIT_Desktop.h>
|
||||
|
||||
SMESHGUI_Dialog::SMESHGUI_Dialog( SMESHGUI* theModule, const bool modal, const bool allowResize,
|
||||
const int flags )
|
||||
: SalomeApp_Dialog( SMESH::GetDesktop( theModule ), "", modal, allowResize, flags )
|
||||
{
|
||||
}
|
||||
|
||||
SMESHGUI_Dialog::~SMESHGUI_Dialog()
|
||||
{
|
||||
}
|
||||
|
18
src/SMESHGUI/SMESHGUI_Dialog.h
Normal file
18
src/SMESHGUI/SMESHGUI_Dialog.h
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
#ifndef SMESHGUI_DIALOG_H
|
||||
#define SMESHGUI_DIALOG_H
|
||||
|
||||
#include <SalomeApp_Dialog.h>
|
||||
|
||||
class SMESHGUI;
|
||||
|
||||
class SMESHGUI_Dialog : public SalomeApp_Dialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
SMESHGUI_Dialog( SMESHGUI*, const bool = false, const bool = false, const int = OK | Cancel | Apply );
|
||||
virtual ~SMESHGUI_Dialog();
|
||||
};
|
||||
|
||||
#endif
|
Loading…
x
Reference in New Issue
Block a user