| 88 | } |
| 89 | |
| 90 | void ProgressWidget::handleTaskFinish() |
| 91 | { |
| 92 | if (!m_task->wasSuccessful() && m_label) |
| 93 | m_label->setText(m_task->failReason()); |
| 94 | |
| 95 | if (m_hide_if_inactive) |
| 96 | hide(); |
| 97 | } |
| 98 | void ProgressWidget::handleTaskStatus(const QString& status) |
| 99 | { |
| 100 | if (m_label) |
nothing calls this directly
no test coverage detected