QmakePM: Use Qt5-style connects

The heavy lifting was done by clazy.

Change-Id: Ibcc1bc772c6cc4413ae5834a442f7d270dc4cd75
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Orgad Shaneh
2016-05-24 23:21:57 +03:00
committed by Orgad Shaneh
parent 1d4f0ccd5c
commit 547d18c0b9
23 changed files with 94 additions and 101 deletions

View File

@@ -252,8 +252,8 @@ void DetailsPage::initializePage()
setTitle(title);
setSubTitle(subTitle);
if (m_libraryDetailsController) {
connect(m_libraryDetailsController, SIGNAL(completeChanged()),
this, SIGNAL(completeChanged()));
connect(m_libraryDetailsController, &LibraryDetailsController::completeChanged,
this, &QWizardPage::completeChanged);
}
}