diff options
author | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2015-09-22 16:06:20 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2015-09-23 13:28:32 +0000 |
commit | cd6452f24214aaa8d03be9b99e4c41cd38cdd056 (patch) | |
tree | 177a2c4bfa0d5936bda02a8df30469670d12258c /src/plugins/projectexplorer/baseprojectwizarddialog.cpp | |
parent | a561e59a2458819268d7b28b3f1a7f3ebb9897c9 (diff) | |
download | qt-creator-cd6452f24214aaa8d03be9b99e4c41cd38cdd056.tar.gz |
Wizards: Use Qt5 style connect
... and do cleanups that are enabled by that change (e.g. remove
signal/slot macros)
Change-Id: I70c09ceb255398865c2b6fabf35ade8557116a08
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
Diffstat (limited to 'src/plugins/projectexplorer/baseprojectwizarddialog.cpp')
-rw-r--r-- | src/plugins/projectexplorer/baseprojectwizarddialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/baseprojectwizarddialog.cpp b/src/plugins/projectexplorer/baseprojectwizarddialog.cpp index b69e43ee3b..69f8c51685 100644 --- a/src/plugins/projectexplorer/baseprojectwizarddialog.cpp +++ b/src/plugins/projectexplorer/baseprojectwizarddialog.cpp @@ -97,7 +97,7 @@ void BaseProjectWizardDialog::init() d->introPageId = d->desiredIntroPageId; setPage(d->desiredIntroPageId, d->introPage); } - connect(this, SIGNAL(accepted()), this, SLOT(slotAccepted())); + connect(this, &QDialog::accepted, this, &BaseProjectWizardDialog::slotAccepted); } BaseProjectWizardDialog::~BaseProjectWizardDialog() |