| 283 | } |
| 284 | |
| 285 | void QmitkPipInstallDialog::OnErrorOccurred(const QString& message) |
| 286 | { |
| 287 | m_DotTimer->stop(); |
| 288 | this->SetUiFinished(false); |
| 289 | this->SetTerminalStatus((m_Mode == Mode::Update ? QString("Update failed: ") : QString("Installation failed: ")) + message); |
| 290 | m_Ui->packageLabel->hide(); |
| 291 | m_Ui->progressBar->hide(); |
| 292 | this->OfferDetails(); |
| 293 | } |
| 294 | |
| 295 | void QmitkPipInstallDialog::OnOutputReceived(const QString& text, bool /*isError*/) |
| 296 | { |
nothing calls this directly
no test coverage detected