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

@ -35,7 +35,7 @@ BusyIndicator::BusyIndicator(QWidget *parent)
fillColor = palette().color(QPalette::WindowText);
timer.setInterval(16);
connect(&timer, SIGNAL(timeout()), this, SLOT(rotate()));
connect(&timer, &QTimer::timeout, this, &BusyIndicator::rotate);
timer.start();
}