From 4ebde70550d9f0ed3be986357afb78843275b9f7 Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Fri, 5 Nov 2021 14:28:00 -0400 Subject: [PATCH] Remove unused signal replaced by deviceIsUnsupported in 08f4e2a. --- oscar/mainwindow.cpp | 14 -------------- oscar/mainwindow.h | 2 -- 2 files changed, 16 deletions(-) diff --git a/oscar/mainwindow.cpp b/oscar/mainwindow.cpp index 57ba06ad..7367683f 100644 --- a/oscar/mainwindow.cpp +++ b/oscar/mainwindow.cpp @@ -518,11 +518,6 @@ bool MainWindow::OpenProfile(QString profileName, bool skippassword) p_profile->p_preferences[STR_PREF_ReimportBackup]=false; } - QList loaders = GetLoaders(); - for (int i=0; iLoadMachineData(progress); progress->setMessage(tr("Loading profile \"%1\"").arg(profileName)); @@ -2106,15 +2101,6 @@ void MainWindow::FreeSessions() } while (date >= first); } -void MainWindow::MachineUnsupported(Machine * m) -{ - if (m == nullptr) { - qCritical() << "MainWindow::MachineUnsupported called with null machine object"; - return; - } - QMessageBox::information(this, STR_MessageBox_Error, QObject::tr("Sorry, your %1 %2 machine is not currently supported.").arg(m->brand()).arg(m->model()), QMessageBox::Ok); -} - void MainWindow::doRecompressEvents() { if (!p_profile) return; diff --git a/oscar/mainwindow.h b/oscar/mainwindow.h index fe31f93d..fa0cbf01 100644 --- a/oscar/mainwindow.h +++ b/oscar/mainwindow.h @@ -182,8 +182,6 @@ class MainWindow : public QMainWindow void doReprocessEvents(); void doRecompressEvents(); - void MachineUnsupported(Machine * m); - protected: void closeEvent(QCloseEvent *) override;