Clazy: Add second batch of SIGNAL/SLOT removal

This commit is contained in:
Felix Kauselmann
2021-06-03 16:17:07 +02:00
parent f813a018d2
commit ae8e47d863
19 changed files with 80 additions and 80 deletions

View File

@ -9,9 +9,9 @@ OnStartFlowSelectionDialog::OnStartFlowSelectionDialog(QWidget *parent)
{
setModal(true);
QPushButton *acceptHW = new QPushButton(this);
connect(acceptHW, SIGNAL(clicked()), this, SLOT(accept()));
connect(acceptHW, &QAbstractButton::clicked, this, &QDialog::accept);
QPushButton *rejectHW = new QPushButton(this); //and use SW flow
connect(rejectHW, SIGNAL(clicked()), this, SLOT(reject()));
connect(rejectHW, &QAbstractButton::clicked, this, &QDialog::reject);
acceptHW->setGeometry(90, 165, 110, 118);
acceptHW->setFlat(true);