summaryrefslogtreecommitdiff
path: root/src/libs/ssh/sshconnection.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2012-06-08 08:48:03 +0200
committerChristian Kandeler <christian.kandeler@nokia.com>2012-06-08 12:41:31 +0200
commitc310f1671cc08bed4d9de40f6526aeadf1739be8 (patch)
tree2d9f70c879f346e7f06b7044af3bf2443922d9a6 /src/libs/ssh/sshconnection.cpp
parent92c7dce14f4ba1ffd5f5c63f5268238a4cf57a5a (diff)
downloadqt-creator-c310f1671cc08bed4d9de40f6526aeadf1739be8.tar.gz
SSH: Add parent object to SshConnection constructor.
There's no mandatory use of shared pointers anymore, so client code should be able to make use of QObject-based ownership. Change-Id: I2344ca66a40c310ef739b32502eb8471da98c03a Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
Diffstat (limited to 'src/libs/ssh/sshconnection.cpp')
-rw-r--r--src/libs/ssh/sshconnection.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libs/ssh/sshconnection.cpp b/src/libs/ssh/sshconnection.cpp
index c6a1151d59..6f4cf24ec3 100644
--- a/src/libs/ssh/sshconnection.cpp
+++ b/src/libs/ssh/sshconnection.cpp
@@ -107,7 +107,8 @@ bool operator!=(const SshConnectionParameters &p1, const SshConnectionParameters
// TODO: Mechanism for checking the host key. First connection to host: save, later: compare
-SshConnection::SshConnection(const SshConnectionParameters &serverInfo)
+SshConnection::SshConnection(const SshConnectionParameters &serverInfo, QObject *parent)
+ : QObject(parent)
{
doStaticInitializationsIfNecessary();