forked from qt-creator/qt-creator
SSH: Use plain pointers to SshConnection objects.
It used to be shared pointers so that existing connection objects could easily be passed around in order not to open a new connection to the same server. Since the introduction of the SshConnectionManager, this is no longer necessary. Change-Id: I13fd3eceaf35d562e6260e9969abbffb01edd6b5 Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
This commit is contained in:
@@ -102,7 +102,7 @@ private:
|
||||
Option m_lastOption;
|
||||
|
||||
// remote callgrind support
|
||||
QSsh::SshConnection::Ptr m_ssh;
|
||||
QSsh::SshConnection *m_ssh;
|
||||
QString m_tempDataFile;
|
||||
QSsh::SshRemoteProcess::Ptr m_findRemoteFile;
|
||||
QSsh::SftpChannel::Ptr m_sftp;
|
||||
|
||||
Reference in New Issue
Block a user