aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/applicationlauncher.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2022-02-15 14:43:18 +0100
committerhjk <hjk@qt.io>2022-02-15 15:07:52 +0000
commit6942c58d65543002f97f1398e0cece76f3db8789 (patch)
treea095a322a98bc7cd22f511ee1d500336e4937c9f /src/plugins/projectexplorer/applicationlauncher.h
parentccb42b3c74cbf96fc9d6523c7ebb9f60c0b990d6 (diff)
ProjectExplorer: Use simpler signature for ApplicationLauncher::processExited()
And rename it to finished(). Maps better to what QtcProcess uses. Change-Id: Ibfa018549f436b27638a791c0b4937c4459c9452 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/applicationlauncher.h')
-rw-r--r--src/plugins/projectexplorer/applicationlauncher.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/applicationlauncher.h b/src/plugins/projectexplorer/applicationlauncher.h
index 1582d5906c..c5272eba5b 100644
--- a/src/plugins/projectexplorer/applicationlauncher.h
+++ b/src/plugins/projectexplorer/applicationlauncher.h
@@ -69,10 +69,13 @@ public:
static QString msgWinCannotRetrieveDebuggingOutput();
+ int exitCode() const;
+ QProcess::ExitStatus exitStatus() const;
+
signals:
void appendMessage(const QString &message, Utils::OutputFormat format, bool appendNewLine = true);
void processStarted();
- void processExited(int exitCode, QProcess::ExitStatus exitStatus);
+ void finished();
void error(QProcess::ProcessError error);
private: