aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/applicationlauncher.h
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2021-11-10 14:31:31 +0100
committerJarek Kobus <jaroslaw.kobus@qt.io>2021-11-10 14:07:29 +0000
commita3ae60d7293af51863d02276129d77b313947581 (patch)
tree1f9f0bc55b6abda0f60cf23baf9cdc6a23e7f27b /src/plugins/projectexplorer/applicationlauncher.h
parent15edfc85cb5d499ff6f2d5d009cc0a495a9473a3 (diff)
Uniform ApplicationLauncher API: get rid of finished()
Use existing processExited() signal instead. Change-Id: I1eecaa05fa8b3a97d8585fca4ca89e8e1acecec3 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/applicationlauncher.h')
-rw-r--r--src/plugins/projectexplorer/applicationlauncher.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/plugins/projectexplorer/applicationlauncher.h b/src/plugins/projectexplorer/applicationlauncher.h
index 07fa19f8ac..1dcefb6cf3 100644
--- a/src/plugins/projectexplorer/applicationlauncher.h
+++ b/src/plugins/projectexplorer/applicationlauncher.h
@@ -71,11 +71,9 @@ public:
signals:
void appendMessage(const QString &message, Utils::OutputFormat format, bool appendNewLine = true);
void processStarted();
- void processExited(int exitCode, QProcess::ExitStatus);
+ void processExited(int exitCode, QProcess::ExitStatus exitStatus);
void error(QProcess::ProcessError error);
- void finished(bool success);
-
private:
std::unique_ptr<Internal::ApplicationLauncherPrivate> d;
};