diff options
author | Christian Kandeler <[email protected]> | 2019-05-21 16:59:29 +0200 |
---|---|---|
committer | Christian Kandeler <[email protected]> | 2019-05-24 09:08:49 +0000 |
commit | 0a555018d1dda0aafff358774af2b564483a8c1e (patch) | |
tree | 657403526e058ab335f19b28e7283a86b2ac0810 /src/libs/ssh/sshremoteprocess.h | |
parent | be0d7aa3e94969234ebf4ba1ae552e973e7b6588 (diff) |
SSH: Pass remote command as QString
The old implementation sent the command over the wire as-is, so we
declared it as a QByteArray and let the caller choose the encoding. This
doesn't make sense anymore, as the command is now passed to an external
process as a QString anyway.
Change-Id: Ib84bc0f871db2b45b93f71d924c4177cc28d3bb0
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/libs/ssh/sshremoteprocess.h')
-rw-r--r-- | src/libs/ssh/sshremoteprocess.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/libs/ssh/sshremoteprocess.h b/src/libs/ssh/sshremoteprocess.h index 82dd1b9dcbe..02ab3546fdc 100644 --- a/src/libs/ssh/sshremoteprocess.h +++ b/src/libs/ssh/sshremoteprocess.h @@ -30,10 +30,6 @@ #include <QStringList> -QT_BEGIN_NAMESPACE -class QByteArray; -QT_END_NAMESPACE - namespace QSsh { class SshConnection; @@ -56,7 +52,7 @@ signals: void done(const QString &error); private: - SshRemoteProcess(const QByteArray &command, const QStringList &connectionArgs); + SshRemoteProcess(const QString &command, const QStringList &connectionArgs); void doStart(); struct SshRemoteProcessPrivate; |