| 40 | emit m_exec->failed(error); |
| 41 | } |
| 42 | void procFinished(int code, QProcess::ExitStatus status) |
| 43 | { |
| 44 | m_lineMaker->flushBuffers(); |
| 45 | if (status == QProcess::NormalExit) |
| 46 | emit m_exec->completed(code); |
| 47 | } |
| 48 | }; |
| 49 | |
| 50 | CommandExecutor::CommandExecutor(const QString& command, QObject* parent) |
no test coverage detected