aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2022-02-18 01:56:48 +0100
committerJarek Kobus <jaroslaw.kobus@qt.io>2022-02-18 10:58:24 +0000
commit0e6aed8127a86082f410e8a7e625a60b1005476d (patch)
tree6de7ab85fcf8f004c6b78cbf90d8c19f0327b5a6 /src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp
parent48960b5cfccaeb4d9810d554e227cf04a6979ee2 (diff)
QtcProcess: Make processId() virtual
I guess this was an intention in the below commit. Amends 9ec997b37654894b027cf4bbd98ca8bba47171b5 Change-Id: Ie55d18f764dc73601f6d911a22323fd2a39c4eb9 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp')
-rw-r--r--src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp b/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp
index efd48b278d..b1c5275272 100644
--- a/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp
+++ b/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp
@@ -177,11 +177,6 @@ QByteArray SshDeviceProcess::readAllStandardError()
return d->remoteProcess.get() ? d->remoteProcess->readAllStandardError() : QByteArray();
}
-qint64 SshDeviceProcess::processId() const
-{
- return 0;
-}
-
void SshDeviceProcess::handleConnected()
{
QTC_ASSERT(d->state == SshDeviceProcessPrivate::Connecting, return);