| 712 | } |
| 713 | |
| 714 | QString QmitkPipInstaller::RequirePythonExecutable() |
| 715 | { |
| 716 | const auto python = this->PythonExecutable(); |
| 717 | |
| 718 | if (python.isEmpty()) |
| 719 | { |
| 720 | m_State = State::Failed; |
| 721 | emit ErrorOccurred("Python executable not found."); |
| 722 | emit InstallFinished(false); |
| 723 | } |
| 724 | |
| 725 | return python; |
| 726 | } |
| 727 | |
| 728 | void QmitkPipInstaller::FinalizeCancel() |
| 729 | { |
no test coverage detected