aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/applicationlauncher.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2022-05-09 08:00:16 +0200
committerhjk <hjk@qt.io>2022-05-09 08:59:03 +0000
commitf9800e5a26dd6f9ae21cd492633ed6f1249cbbbf (patch)
tree5fdb242518c97b920888b684cc440c44b718ec86 /src/plugins/projectexplorer/applicationlauncher.h
parente79c43229186c16889238ad00e3542bd289b00db (diff)
ProjectExplorer: React to QtcProcess::done in ApplicationLauncher
The 'modern' way. Change-Id: I80c0bb0b9c7c08e6aef724d430a8dbbd4b0c2777 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Diffstat (limited to 'src/plugins/projectexplorer/applicationlauncher.h')
-rw-r--r--src/plugins/projectexplorer/applicationlauncher.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/applicationlauncher.h b/src/plugins/projectexplorer/applicationlauncher.h
index ca621795f8..edb8e2b0e4 100644
--- a/src/plugins/projectexplorer/applicationlauncher.h
+++ b/src/plugins/projectexplorer/applicationlauncher.h
@@ -63,12 +63,12 @@ public:
int exitCode() const;
QProcess::ExitStatus exitStatus() const;
+ QProcess::ProcessError error() const;
signals:
void appendMessage(const QString &message, Utils::OutputFormat format, bool appendNewLine = true);
void started();
- void finished();
- void errorOccurred(QProcess::ProcessError error);
+ void done();
private:
std::unique_ptr<Internal::ApplicationLauncherPrivate> d;