diff --git a/src/plugins/projectexplorer/applicationlauncher.cpp b/src/plugins/projectexplorer/applicationlauncher.cpp index a57c7147e1a..deb4eb4d67d 100644 --- a/src/plugins/projectexplorer/applicationlauncher.cpp +++ b/src/plugins/projectexplorer/applicationlauncher.cpp @@ -325,6 +325,16 @@ QString ApplicationLauncher::msgWinCannotRetrieveDebuggingOutput() return tr("Cannot retrieve debugging output.") + QLatin1Char('\n'); } +int ApplicationLauncher::exitCode() const +{ + return d->m_exitCode; +} + +QProcess::ExitStatus ApplicationLauncher::exitStatus() const +{ + return d->m_exitStatus; +} + void ApplicationLauncherPrivate::handleProcessStarted() { m_listeningPid = applicationPID();