| 132 | } |
| 133 | |
| 134 | void QMakeJob::processFinished(int exitCode, QProcess::ExitStatus status) |
| 135 | { |
| 136 | if (status == QProcess::NormalExit) { |
| 137 | m_model->appendLine(i18n("*** Exited with return code: %1 ***", exitCode)); |
| 138 | } else if (error() == KJob::KilledJobError) { |
| 139 | m_model->appendLine(i18n("*** Process aborted ***")); |
| 140 | } else { |
| 141 | m_model->appendLine(i18n("*** Crashed with return code: %1 ***", exitCode)); |
| 142 | } |
| 143 | |
| 144 | emitResult(); |
| 145 | } |
| 146 | |
| 147 | #include "moc_qmakejob.cpp" |
nothing calls this directly
no test coverage detected