[partition] Silence warnings about missing vtable
This commit is contained in:
parent
81715ba199
commit
7e12b65c94
@ -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()
|
||||||
{
|
{
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user