| 26 | } |
| 27 | |
| 28 | void PreLaunchCommand::executeTask() |
| 29 | { |
| 30 | //FIXME: where to put this? |
| 31 | QString prelaunch_cmd = m_parent->substituteVariables(m_command); |
| 32 | emit logLine(tr("Running Pre-Launch command: %1").arg(prelaunch_cmd), MessageLevel::Launcher); |
| 33 | m_process.start(prelaunch_cmd); |
| 34 | } |
| 35 | |
| 36 | void PreLaunchCommand::on_state(LoggedProcess::State state) |
| 37 | { |
nothing calls this directly
no test coverage detected