summaryrefslogtreecommitdiff
path: root/src/libs/qmldebug/qmldebugclient.h
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2016-06-04 22:55:17 +0300
committerOrgad Shaneh <orgads@gmail.com>2016-06-06 08:15:13 +0000
commit624c6fe6ee9a1fd5ca1cf787e5cddc73e8d57474 (patch)
tree7994b68306dc813cc301a57f8baa6e569cb0760f /src/libs/qmldebug/qmldebugclient.h
parentd058ca6db9ab3ba25c8d2fc9cb9f333d9c66b8a8 (diff)
downloadqt-creator-624c6fe6ee9a1fd5ca1cf787e5cddc73e8d57474.tar.gz
QmlDebug: Use Qt5-style connects
The heavy lifting was done by clazy. Change-Id: I94f5c85388af1b8e06128800090222a6b64f5191 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@theqtcompany.com> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/libs/qmldebug/qmldebugclient.h')
-rw-r--r--src/libs/qmldebug/qmldebugclient.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libs/qmldebug/qmldebugclient.h b/src/libs/qmldebug/qmldebugclient.h
index 3ea50acae5..c8d03d5678 100644
--- a/src/libs/qmldebug/qmldebugclient.h
+++ b/src/libs/qmldebug/qmldebugclient.h
@@ -70,13 +70,12 @@ signals:
void socketError(QAbstractSocket::SocketError error);
void socketStateChanged(QAbstractSocket::SocketState state);
-private slots:
+private:
void newConnection();
void socketConnected();
void socketDisconnected();
void protocolReadyRead();
-private:
QScopedPointer<QmlDebugConnectionPrivate> d_ptr;
};