mirror of
https://github.com/YACReader/yacreader
synced 2025-07-14 02:54:46 -04:00
Clazy: Add second batch of SIGNAL/SLOT removal
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user