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

@ -88,7 +88,7 @@ void YACReaderTreeView::dragMoveEvent(QDragMoveEvent *event)
QModelIndex underMouse = indexAt(event->pos());
if (underMouse.isValid()) {
expandPos = event->pos();
connect(&expandTimer, SIGNAL(timeout()), this, SLOT(expandCurrent()));
connect(&expandTimer, &QTimer::timeout, this, &YACReaderTreeView::expandCurrent);
expandTimer.setSingleShot(true);
expandTimer.start(500);
}