| 78 | } |
| 79 | |
| 80 | void LoggedProcess::on_stdOut() |
| 81 | { |
| 82 | auto lines = reprocess(readAllStandardOutput(), m_out_decoder); |
| 83 | emit log(lines, MessageLevel::StdOut); |
| 84 | } |
| 85 | |
| 86 | void LoggedProcess::on_exit(int exit_code, QProcess::ExitStatus status) |
| 87 | { |
nothing calls this directly
no test coverage detected