From 40c495cd19db0cdeb62a0069aa52362f0a5ebae1 Mon Sep 17 00:00:00 2001 From: Davide Pesavento Date: Sat, 21 Jun 2025 22:51:25 -0400 Subject: [PATCH] Qt: Remove last use of SLOT --- src/duckstation-qt/isobrowserwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/duckstation-qt/isobrowserwindow.cpp b/src/duckstation-qt/isobrowserwindow.cpp index 7657ba8bc..2cc2736f1 100644 --- a/src/duckstation-qt/isobrowserwindow.cpp +++ b/src/duckstation-qt/isobrowserwindow.cpp @@ -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); }