Qt: Remove last use of SLOT

This commit is contained in:
Davide Pesavento 2025-06-21 22:51:25 -04:00 committed by Connor McLaughlin
parent b67a8c3127
commit 40c495cd19

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. // 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);
} }