*** empty log message ***

This commit is contained in:
asl 2005-07-04 04:20:37 +00:00
parent 2bd09d7cc7
commit 44185d327a
4 changed files with 38 additions and 1 deletions

View File

@ -107,6 +107,7 @@ LIB_SRC = SMESHGUI.cxx \
SMESHGUI_VTKUtils.cxx \ SMESHGUI_VTKUtils.cxx \
SMESHGUI_Selection.cxx \ SMESHGUI_Selection.cxx \
SMESHGUI_CreatePolyhedralVolumeDlg.cxx \ SMESHGUI_CreatePolyhedralVolumeDlg.cxx \
SMESHGUI_Dialog.cxx \
SMESHGUI_Operation.cxx SMESHGUI_Operation.cxx
LIB_MOC = \ LIB_MOC = \
@ -150,6 +151,7 @@ LIB_MOC = \
SMESHGUI_SewingDlg.h \ SMESHGUI_SewingDlg.h \
SMESHGUI_PrecisionDlg.h \ SMESHGUI_PrecisionDlg.h \
SMESHGUI_MergeNodesDlg.h \ SMESHGUI_MergeNodesDlg.h \
SMESHGUI_Dialog.h \
SMESHGUI_CreatePolyhedralVolumeDlg.h \ SMESHGUI_CreatePolyhedralVolumeDlg.h \
SMESHGUI_Operation.h SMESHGUI_Operation.h

View File

@ -2473,7 +2473,7 @@ void SMESHGUI::createPopupItem( const int id,
if( pId!=-1 ) if( pId!=-1 )
parentId = popupMgr()->actionId( action( pId ) ); 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 ); popupMgr()->insert( action( id ), parentId, 0 );
QChar lc = QtxPopupMgr::Selection::defEquality(); QChar lc = QtxPopupMgr::Selection::defEquality();

View 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()
{
}

View 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