diff options
author | Jarek Kobus <[email protected]> | 2022-03-02 11:40:20 +0100 |
---|---|---|
committer | Jarek Kobus <[email protected]> | 2022-03-02 11:39:22 +0000 |
commit | 14d39b871daa7cccc5920945f19309545f6a9103 (patch) | |
tree | add10ad08984d4ca79d8cdf344195e3d7199f603 /src | |
parent | da6cf91432d1bb9280f345ddcfedbed854c7d9ed (diff) |
SshRemoteProcess: Add missing override
At some point QtcProcess::start() started to be virtual,
so the intention is that SshRemoteProcess overrides it.
Amends 95c9579c58d8cd9dfacbeee70f84920ab9cf87e7
Change-Id: Iff0c0984f07440c58c5f89a0f5e188503756d6d0
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/libs/ssh/sshremoteprocess.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/ssh/sshremoteprocess.h b/src/libs/ssh/sshremoteprocess.h index 2f811c1fc33..f89a7313c6a 100644 --- a/src/libs/ssh/sshremoteprocess.h +++ b/src/libs/ssh/sshremoteprocess.h @@ -41,7 +41,7 @@ public: SshRemoteProcess(const QString &command, const QStringList &connectionArgs); void requestX11Forwarding(const QString &displayName); - void start(); + void start() override; Utils::CommandLine fullLocalCommandLine(bool inTerminal = false) const; |