diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2016-06-30 23:04:57 +0300 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2016-07-01 11:29:27 +0000 |
commit | e3b1c9b912c1408ba63f5b75e78ed16730c21f40 (patch) | |
tree | 64e09f0bc7c969607557e3c860059179bb68ad7f /src/plugins/remotelinux/abstractremotelinuxdeployservice.h | |
parent | 802edc9d8fdae55ea247567a337d5b769e206363 (diff) | |
download | qt-creator-e3b1c9b912c1408ba63f5b75e78ed16730c21f40.tar.gz |
RemoteLinux: Use Qt5-style connects
The heavy lifting was done by clazy.
Change-Id: I1a03435bbb4281bad4ff64baba0182e0050170d6
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Diffstat (limited to 'src/plugins/remotelinux/abstractremotelinuxdeployservice.h')
-rw-r--r-- | src/plugins/remotelinux/abstractremotelinuxdeployservice.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/remotelinux/abstractremotelinuxdeployservice.h b/src/plugins/remotelinux/abstractremotelinuxdeployservice.h index 8efb793953..931930806e 100644 --- a/src/plugins/remotelinux/abstractremotelinuxdeployservice.h +++ b/src/plugins/remotelinux/abstractremotelinuxdeployservice.h @@ -82,11 +82,10 @@ protected: void handleDeviceSetupDone(bool success); void handleDeploymentDone(); -private slots: +private: void handleConnected(); void handleConnectionFailure(); -private: virtual bool isDeploymentNecessary() const = 0; // Should do things needed *before* connecting. Call handleDeviceSetupDone() afterwards. |