diff --git a/src/duckstation-qt/cheatmanagerdialog.cpp b/src/duckstation-qt/cheatmanagerdialog.cpp index 1b0c57090..648ef3a49 100644 --- a/src/duckstation-qt/cheatmanagerdialog.cpp +++ b/src/duckstation-qt/cheatmanagerdialog.cpp @@ -308,11 +308,6 @@ CheatList* CheatManagerDialog::getCheatList() const return list; } -void CheatManagerDialog::queueUpdateCheatList() -{ - QMetaObject::invokeMethod(this, &CheatManagerDialog::updateCheatList, Qt::QueuedConnection); -} - void CheatManagerDialog::updateCheatList() { QSignalBlocker sb(m_ui.cheatList); diff --git a/src/duckstation-qt/cheatmanagerdialog.h b/src/duckstation-qt/cheatmanagerdialog.h index 66dbee61f..da6e55408 100644 --- a/src/duckstation-qt/cheatmanagerdialog.h +++ b/src/duckstation-qt/cheatmanagerdialog.h @@ -75,7 +75,6 @@ private: int getSelectedCheatIndex() const; int getSelectedResultIndex() const; int getSelectedWatchIndex() const; - void queueUpdateCheatList(); Ui::CheatManagerDialog m_ui;