| 67 | } |
| 68 | |
| 69 | void ScratchpadJob::processFinished(int exitCode, QProcess::ExitStatus) |
| 70 | { |
| 71 | qCDebug(PLUGIN_SCRATCHPAD) << "finished process"; |
| 72 | m_lineMaker->flushBuffers(); |
| 73 | outputModel()->appendLine(i18n("Process finished with exit code %1.", exitCode)); |
| 74 | emitResult(); |
| 75 | } |
| 76 | |
| 77 | void ScratchpadJob::processError(QProcess::ProcessError error) |
| 78 | { |
nothing calls this directly
no test coverage detected