aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/applicationlauncher.h
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2021-11-09 17:54:01 +0100
committerJarek Kobus <jaroslaw.kobus@qt.io>2021-11-10 11:38:48 +0000
commit971b1b226917422926af86e67e682942ccfe77c4 (patch)
tree42661e5640463c0da067961ef37a09eb77071e0f /src/plugins/projectexplorer/applicationlauncher.h
parent02dbed75b4951bb2c2ec6f3b5b4a50e0fbce75c6 (diff)
Uniform ApplicationLauncher API: get rid of remoteProcessStarted()
Use existing processStarted() signal instead. Replace isRemoteRunning() with isLocal(). Change-Id: I58d0204888116c00e793fa43f969707013db06eb Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/applicationlauncher.h')
-rw-r--r--src/plugins/projectexplorer/applicationlauncher.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/applicationlauncher.h b/src/plugins/projectexplorer/applicationlauncher.h
index e7d835b25a..a41294c9c3 100644
--- a/src/plugins/projectexplorer/applicationlauncher.h
+++ b/src/plugins/projectexplorer/applicationlauncher.h
@@ -60,7 +60,7 @@ public:
void stop();
bool isRunning() const;
Utils::ProcessHandle applicationPID() const;
- bool isRemoteRunning() const;
+ bool isLocal() const;
QString errorString() const;
QProcess::ProcessError processError() const;
@@ -75,7 +75,6 @@ signals:
void error(QProcess::ProcessError error);
void reportError(const QString &errorOutput);
- void remoteProcessStarted();
void finished(bool success);
private: