summaryrefslogtreecommitdiff
path: root/src/plugins/remotelinux/linuxdevicetester.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2012-04-03 10:23:59 +0200
committerChristian Kandeler <christian.kandeler@nokia.com>2012-04-03 13:45:38 +0200
commit1348e9297158a0cd63a2b3ded65d4b3b9d410048 (patch)
tree4593a460837996b6dbf65492217ed48f73987c6b /src/plugins/remotelinux/linuxdevicetester.cpp
parent23a420eb3fdc30aa7c0357ac5e817c7fe398f9e2 (diff)
downloadqt-creator-1348e9297158a0cd63a2b3ded65d4b3b9d410048.tar.gz
RemoteLinux: Fix ports gatherer API.
The ports gatherer used to take an SshConnection for historical reasons (connection sharing in the absence of a connection manager). This is no longer required, since all the information needed for creating or re-using a connection is available from the device. In addition, the old code assumes the connection is already established, which some newer callers did not adhere to, so this patch also fixes a bug. Change-Id: I3fd7fec7de9b64126358749f727a403bfa1e0a94 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/linuxdevicetester.cpp')
-rw-r--r--src/plugins/remotelinux/linuxdevicetester.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/remotelinux/linuxdevicetester.cpp b/src/plugins/remotelinux/linuxdevicetester.cpp
index c1b915a58e..e7b32afa51 100644
--- a/src/plugins/remotelinux/linuxdevicetester.cpp
+++ b/src/plugins/remotelinux/linuxdevicetester.cpp
@@ -159,7 +159,7 @@ void GenericLinuxDeviceTester::handleProcessFinished(int exitStatus)
emit progressMessage(tr("Checking if specified ports are available..."));
d->state = TestingPorts;
- d->portsGatherer.start(d->connection, d->deviceConfiguration);
+ d->portsGatherer.start(d->deviceConfiguration);
}
void GenericLinuxDeviceTester::handlePortsGatheringError(const QString &message)