aboutsummaryrefslogtreecommitdiff
path: root/example/example_4_ibbTransferTarget
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2010-06-23 09:36:12 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2010-06-23 09:36:12 +0000
commit9ed3b3203d9b9fe195f51602717d726e0dcab7c3 (patch)
tree162980e164191196153e4d197d33de951befa0f8 /example/example_4_ibbTransferTarget
parent3c2674ca72a5c7249357885d4a2e0b7944b5dc5e (diff)
downloadqxmpp-9ed3b3203d9b9fe195f51602717d726e0dcab7c3.tar.gz
* rename getArchiveManager to archiveManager
* rename getTransferManager to transferManager
Diffstat (limited to 'example/example_4_ibbTransferTarget')
-rw-r--r--example/example_4_ibbTransferTarget/ibbTransferTarget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/example_4_ibbTransferTarget/ibbTransferTarget.cpp b/example/example_4_ibbTransferTarget/ibbTransferTarget.cpp
index a7f507c7..b70dcd85 100644
--- a/example/example_4_ibbTransferTarget/ibbTransferTarget.cpp
+++ b/example/example_4_ibbTransferTarget/ibbTransferTarget.cpp
@@ -34,12 +34,12 @@ IbbTransferTarget::IbbTransferTarget(QObject *parent)
{
m_buffer = new QBuffer(this);
- bool check = connect(&getTransferManager(), SIGNAL(fileReceived(QXmppTransferJob*)),
+ bool check = connect(&transferManager(), SIGNAL(fileReceived(QXmppTransferJob*)),
this, SLOT(slotFileReceived(QXmppTransferJob*)));
Q_ASSERT(check);
Q_UNUSED(check);
- getTransferManager().setSupportedMethods(QXmppTransferJob::InBandMethod);
+ transferManager().setSupportedMethods(QXmppTransferJob::InBandMethod);
}
IbbTransferTarget::~IbbTransferTarget()