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