GH-922 improve version select dialogs
This commit is contained in:
parent
4fc4a17256
commit
5779ffd664
12 changed files with 168 additions and 22 deletions
|
@ -44,6 +44,7 @@ void Task::emitFailed(QString reason)
|
|||
m_failReason = reason;
|
||||
qCritical() << "Task failed: " << reason;
|
||||
emit failed(reason);
|
||||
emit finished();
|
||||
}
|
||||
|
||||
void Task::emitSucceeded()
|
||||
|
@ -53,6 +54,7 @@ void Task::emitSucceeded()
|
|||
m_succeeded = true;
|
||||
qDebug() << "Task succeeded";
|
||||
emit succeeded();
|
||||
emit finished();
|
||||
}
|
||||
|
||||
bool Task::isRunning() const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue