forked from qt-creator/qt-creator
Autotools: Use Qt5 style connects
* Get rid of "slots" from the headers Change-Id: Ie12f5705a2ca92a431992a45f57193a72ea7032a Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -237,10 +237,10 @@ AutoreconfStepConfigWidget::AutoreconfStepConfigWidget(AutoreconfStep *autorecon
|
||||
|
||||
updateDetails();
|
||||
|
||||
connect(m_additionalArguments, SIGNAL(textChanged(QString)),
|
||||
autoreconfStep, SLOT(setAdditionalArguments(QString)));
|
||||
connect(autoreconfStep, SIGNAL(additionalArgumentsChanged(QString)),
|
||||
this, SLOT(updateDetails()));
|
||||
connect(m_additionalArguments, &QLineEdit::textChanged,
|
||||
autoreconfStep, &AutoreconfStep::setAdditionalArguments);
|
||||
connect(autoreconfStep, &AutoreconfStep::additionalArgumentsChanged,
|
||||
this, &AutoreconfStepConfigWidget::updateDetails);
|
||||
}
|
||||
|
||||
QString AutoreconfStepConfigWidget::displayName() const
|
||||
|
||||
Reference in New Issue
Block a user