Qt: Remove last use of SLOT

This commit is contained in:
Davide Pesavento 2025-06-21 22:51:25 -04:00
parent 9b5287df9d
commit 9562c46cbb

View File

@ -365,5 +365,5 @@ void ISOBrowserWindow::populateFiles(const QString& path)
}
// this is utter shit, the scrollbar visibility doesn't update in time, so we have to queue it.
QTimer::singleShot(20, Qt::TimerType::CoarseTimer, this, SLOT(resizeFileListColumns()));
QTimer::singleShot(20, Qt::CoarseTimer, this, &ISOBrowserWindow::resizeFileListColumns);
}