aboutsummaryrefslogtreecommitdiff
path: root/src/server
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2011-07-07 09:08:39 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2011-07-07 09:08:39 +0000
commit7df119586bbb595f8f00ca1cb54bc3beebfc14a5 (patch)
tree2c30b72af484ce0821730b9c8f4955ea8b86aaf1 /src/server
parent498881bcf60b59b945beed450e31592b1c8e96a3 (diff)
downloadqxmpp-7df119586bbb595f8f00ca1cb54bc3beebfc14a5.tar.gz
normalize Qt signal / slot signatures
Diffstat (limited to 'src/server')
-rw-r--r--src/server/mod_proxy65.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/mod_proxy65.cpp b/src/server/mod_proxy65.cpp
index c5edbd4a..99b840f8 100644
--- a/src/server/mod_proxy65.cpp
+++ b/src/server/mod_proxy65.cpp
@@ -188,8 +188,8 @@ QXmppServerProxy65::QXmppServerProxy65()
d->totalBytes = 0;
d->totalTransfers = 0;
- bool check = connect(d->server, SIGNAL(newConnection(QTcpSocket*, const QString&, quint16)),
- this, SLOT(slotSocketConnected(QTcpSocket*, const QString &, quint16)));
+ bool check = connect(d->server, SIGNAL(newConnection(QTcpSocket*,QString,quint16)),
+ this, SLOT(slotSocketConnected(QTcpSocket*,QString,quint16)));
Q_ASSERT(check);
check = connect(d->statisticsTimer, SIGNAL(timeout()),