aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKurt Pattyn <pattyn.kurt@gmail.com>2014-02-13 22:00:27 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-15 12:27:16 +0100
commitabb6912c11dc322718724eb11e70617d8428b6f5 (patch)
tree9925f04f21eeae8f85a02357c4d874441f7e8df9 /src
parent6c0f39441a5165f4800fcee7c256cf3ba1db0d51 (diff)
Fix multiple emission of received signals
Task-number: QTBUG-36762 Change-Id: I239bdd06252fb90056a687ace8540bb91b0055a1 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/websockets/qwebsocket_p.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/websockets/qwebsocket_p.cpp b/src/websockets/qwebsocket_p.cpp
index d54337f..338e581 100644
--- a/src/websockets/qwebsocket_p.cpp
+++ b/src/websockets/qwebsocket_p.cpp
@@ -575,7 +575,7 @@ void QWebSocketPrivate::releaseConnections(const QTcpSocket *pTcpSocket)
{
if (Q_LIKELY(pTcpSocket))
pTcpSocket->disconnect(pTcpSocket);
- m_dataProcessor.disconnect(&m_dataProcessor);
+ m_dataProcessor.disconnect();
}
/*!