aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/applicationlauncher.h
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2022-03-01 13:35:15 +0100
committerJarek Kobus <jaroslaw.kobus@qt.io>2022-03-02 12:34:06 +0000
commitff0ce27c1f7a51174dcced6cd925ec3e74c2564e (patch)
tree4b7400a37026f94ad0874f8e95209564b40359b9 /src/plugins/projectexplorer/applicationlauncher.h
parent14d39b871daa7cccc5920945f19309545f6a9103 (diff)
ApplicationLauncher: Unify API
Make the API more similar to QtcProcess API. Rename: processStarted() -> started() error() -> errorOccurred() processError() -> error() Change-Id: I86d650d55a643f5999fc91e56b985f699e2d7245 Reviewed-by: hjk <hjk@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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/projectexplorer/applicationlauncher.h b/src/plugins/projectexplorer/applicationlauncher.h
index b3e833c22c..5d339fd271 100644
--- a/src/plugins/projectexplorer/applicationlauncher.h
+++ b/src/plugins/projectexplorer/applicationlauncher.h
@@ -64,7 +64,7 @@ public:
bool isLocal() const;
QString errorString() const;
- QProcess::ProcessError processError() const;
+ QProcess::ProcessError error() const;
static QString msgWinCannotRetrieveDebuggingOutput();
@@ -73,9 +73,9 @@ public:
signals:
void appendMessage(const QString &message, Utils::OutputFormat format, bool appendNewLine = true);
- void processStarted();
+ void started();
void finished();
- void error(QProcess::ProcessError error);
+ void errorOccurred(QProcess::ProcessError error);
private:
std::unique_ptr<Internal::ApplicationLauncherPrivate> d;