From 42417ed3b2c633c4f1dc514c4e5c77f8f74c07ef Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Thu, 20 Aug 2020 22:30:12 +0200 Subject: [PATCH] [libcalamares] Rip out the broken jobqueue information signals (break build) --- src/libcalamares/JobQueue.cpp | 1 - src/libcalamares/JobQueue.h | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/libcalamares/JobQueue.cpp b/src/libcalamares/JobQueue.cpp index b39b43759..64c73434e 100644 --- a/src/libcalamares/JobQueue.cpp +++ b/src/libcalamares/JobQueue.cpp @@ -242,7 +242,6 @@ JobQueue::enqueue( int moduleWeight, const JobList& jobs ) { Q_ASSERT( !m_thread->isRunning() ); m_thread->enqueue( moduleWeight, jobs ); - emit queueChanged( jobs ); // FIXME: bogus } void diff --git a/src/libcalamares/JobQueue.h b/src/libcalamares/JobQueue.h index 278d50d44..23977b78f 100644 --- a/src/libcalamares/JobQueue.h +++ b/src/libcalamares/JobQueue.h @@ -60,8 +60,6 @@ public: bool isRunning() const { return !m_finished; } signals: - void queueChanged( const JobList& jobs ); - void progress( qreal percent, const QString& prettyName ); void finished(); void failed( const QString& message, const QString& details );