| 143 | } |
| 144 | |
| 145 | void ProgressDialog::changeStatus(const QString& status) |
| 146 | { |
| 147 | ui->globalStatusLabel->setText(task->getStatus()); |
| 148 | ui->statusLabel->setText(task->getStepStatus()); |
| 149 | |
| 150 | updateSize(); |
| 151 | } |
| 152 | |
| 153 | void ProgressDialog::changeProgress(qint64 current, qint64 total) |
| 154 | { |
nothing calls this directly
no test coverage detected