| 134 | } |
| 135 | |
| 136 | void QmitkPipInstaller::SetInstallSpec(const mitk::PipInstallSpec& spec) |
| 137 | { |
| 138 | if (this->IsRunning()) |
| 139 | { |
| 140 | MITK_WARN << "Cannot change install spec while an operation is running."; |
| 141 | return; |
| 142 | } |
| 143 | |
| 144 | m_Spec = spec; |
| 145 | } |
| 146 | |
| 147 | void QmitkPipInstaller::StartInstall() |
| 148 | { |
no test coverage detected