MCPcopy Create free account
hub / github.com/KDE/kdevelop / processFinished

Method processFinished

plugins/qmakemanager/qmakejob.cpp:134–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

132}
133
134void 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"

Callers

nothing calls this directly

Calls 1

appendLineMethod · 0.45

Tested by

no test coverage detected