[partition] Silence warnings about missing vtable

This commit is contained in:
Adriaan de Groot 2019-05-14 05:01:39 -04:00
parent 81715ba199
commit 7e12b65c94
2 changed files with 6 additions and 0 deletions

View File

@ -130,6 +130,11 @@ QueueRunner::QueueRunner( JobQueue* queue )
connect( m_queue, &JobQueue::failed, this, &QueueRunner::onFailed ); connect( m_queue, &JobQueue::failed, this, &QueueRunner::onFailed );
} }
QueueRunner::~QueueRunner()
{
// Nothing to do. We don't own the queue, and disconnect happens automatically
}
bool bool
QueueRunner::run() QueueRunner::run()
{ {

View File

@ -36,6 +36,7 @@ class QueueRunner : public QObject
{ {
public: public:
QueueRunner( Calamares::JobQueue* queue ); QueueRunner( Calamares::JobQueue* queue );
virtual ~QueueRunner() override;
/** /**
* Synchronously runs the queue. Returns true on success * Synchronously runs the queue. Returns true on success