From 790c1346d92edb15b2b6431fb47be90d05d3314b Mon Sep 17 00:00:00 2001 From: Jarek Kobus Date: Tue, 15 Feb 2022 16:36:54 +0100 Subject: [PATCH] Implement newly added methods Amends 6942c58d65543002f97f1398e0cece76f3db8789 Change-Id: I115fda8495e6175cb805191d6c2fc83056dcab10 Reviewed-by: Jarek Kobus --- src/plugins/projectexplorer/applicationlauncher.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) 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();