From eabda2979cedae1d5405106a04e1bf3518ad70a1 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Fri, 12 Feb 2021 01:10:06 +1000 Subject: [PATCH] Qt: Fix Linux compile --- src/duckstation-qt/cheatmanagerdialog.cpp | 5 ----- src/duckstation-qt/cheatmanagerdialog.h | 1 - 2 files changed, 6 deletions(-) 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;