aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/qmldebug
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2017-09-07 14:07:10 +0200
committerUlf Hermann <ulf.hermann@qt.io>2017-09-07 12:48:14 +0000
commit046e4db97ab8caec02b54786b475dd5f1fea34c8 (patch)
tree4aebf3c05b7a7b414552ef766312f2a0e065c311 /src/libs/qmldebug
parentc4b50488362ec72bfe053f66ae5cdf6a7417c4f1 (diff)
QmlProfiler: Remove slots declarations and Qt4 connections
The signals from QML are relayed through the respective models, so that we don't have to use Qt4 connections there. Change-Id: I864b49061c1f28acbebfc7378bfe39f96d3cae18 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/libs/qmldebug')
-rw-r--r--src/libs/qmldebug/qpacketprotocol.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/qmldebug/qpacketprotocol.h b/src/libs/qmldebug/qpacketprotocol.h
index 33d1ecdbf6..1055784368 100644
--- a/src/libs/qmldebug/qpacketprotocol.h
+++ b/src/libs/qmldebug/qpacketprotocol.h
@@ -50,7 +50,7 @@ public:
QByteArray read();
bool waitForReadyRead(int msecs = 3000);
-Q_SIGNALS:
+signals:
void readyRead();
void invalidPacket();