From 684fee3855387d652e8603872225865d4779d31e Mon Sep 17 00:00:00 2001 From: Jeremy Lainé Date: Sat, 21 Jul 2012 18:51:09 +0200 Subject: doc fixes --- src/client/QXmppTransferManager.cpp | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) (limited to 'src/client/QXmppTransferManager.cpp') diff --git a/src/client/QXmppTransferManager.cpp b/src/client/QXmppTransferManager.cpp index ea8dccef..a88d5deb 100644 --- a/src/client/QXmppTransferManager.cpp +++ b/src/client/QXmppTransferManager.cpp @@ -757,19 +757,6 @@ QXmppTransferManager::~QXmppTransferManager() delete d; } -void QXmppTransferManager::setClient(QXmppClient *client) -{ - bool check; - Q_UNUSED(check); - - QXmppClientExtension::setClient(client); - - // XEP-0047: In-Band Bytestreams - check = connect(client, SIGNAL(iqReceived(QXmppIq)), - this, SLOT(_q_iqReceived(QXmppIq))); - Q_ASSERT(check); -} - void QXmppTransferManager::byteStreamIqReceived(const QXmppByteStreamIq &iq) { // handle IQ from proxy @@ -868,6 +855,7 @@ void QXmppTransferManager::byteStreamSetReceived(const QXmppByteStreamIq &iq) job->connectToHosts(iq); } +/// \cond QStringList QXmppTransferManager::discoveryFeatures() const { return QStringList() @@ -924,6 +912,20 @@ bool QXmppTransferManager::handleStanza(const QDomElement &element) return false; } +void QXmppTransferManager::setClient(QXmppClient *client) +{ + bool check; + Q_UNUSED(check); + + QXmppClientExtension::setClient(client); + + // XEP-0047: In-Band Bytestreams + check = connect(client, SIGNAL(iqReceived(QXmppIq)), + this, SLOT(_q_iqReceived(QXmppIq))); + Q_ASSERT(check); +} +/// \endcond + void QXmppTransferManager::ibbCloseIqReceived(const QXmppIbbCloseIq &iq) { QXmppIq response; -- cgit v1.2.3