mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Define parent of QDialog
This commit is contained in:
parent
58172f33f4
commit
04eac7050c
5 changed files with 5 additions and 5 deletions
|
@ -119,7 +119,7 @@ void CMainWindow::onConfigureClicked()
|
|||
|
||||
void CMainWindow::onProfiles()
|
||||
{
|
||||
CProfilesDialog dialog;
|
||||
CProfilesDialog dialog(this);
|
||||
|
||||
if (dialog.exec())
|
||||
{
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
#define new DEBUG_NEW
|
||||
#endif
|
||||
|
||||
COperationDialog::COperationDialog():QDialog(), m_aborting(false)
|
||||
COperationDialog::COperationDialog(QWidget *parent):QDialog(parent), m_aborting(false), m_operation(OperationNone)
|
||||
{
|
||||
setupUi(this);
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ class COperationDialog : public QDialog, public Ui::OperationDialog, public IOpe
|
|||
Q_OBJECT
|
||||
|
||||
public:
|
||||
COperationDialog();
|
||||
COperationDialog(QWidget *parent = NULL);
|
||||
virtual ~COperationDialog();
|
||||
|
||||
public slots:
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#define new DEBUG_NEW
|
||||
#endif
|
||||
|
||||
CProfilesDialog::CProfilesDialog():QDialog(), m_currentProfileIndex(-1)
|
||||
CProfilesDialog::CProfilesDialog(QWidget *parent):QDialog(parent), m_currentProfileIndex(-1)
|
||||
{
|
||||
setupUi(this);
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ class CProfilesDialog : public QDialog, public Ui::ProfilesDialog
|
|||
Q_OBJECT
|
||||
|
||||
public:
|
||||
CProfilesDialog();
|
||||
CProfilesDialog(QWidget *parent = NULL);
|
||||
virtual ~CProfilesDialog();
|
||||
|
||||
private slots:
|
||||
|
|
Loading…
Reference in a new issue