aboutsummaryrefslogtreecommitdiff
path: root/source/QXmppStream.cpp
diff options
context:
space:
mode:
authorManjeet Dahiya <manjeetdahiya@gmail.com>2010-03-04 19:07:48 +0000
committerManjeet Dahiya <manjeetdahiya@gmail.com>2010-03-04 19:07:48 +0000
commit6c0482b3e2e7156d930de2a0684075aacfddad69 (patch)
treec1be403eac1a25cd84568fb6173a1ab3a5f61b3c /source/QXmppStream.cpp
parent4d9f3e2bbc54189142102ef7104a738dd55065cd (diff)
downloadqxmpp-6c0482b3e2e7156d930de2a0684075aacfddad69.tar.gz
remove deprecated functions calls of QXmppBind
Diffstat (limited to 'source/QXmppStream.cpp')
-rw-r--r--source/QXmppStream.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/QXmppStream.cpp b/source/QXmppStream.cpp
index fabb02d9..83ed747d 100644
--- a/source/QXmppStream.cpp
+++ b/source/QXmppStream.cpp
@@ -1067,8 +1067,8 @@ void QXmppStream::processBindIq(const QXmppBind& bind)
switch(bind.type())
{
case QXmppIq::Result:
- if(!bind.getResource().isEmpty())
- getConfiguration().setResource(bind.getResource());
+ if(!bind.resource().isEmpty())
+ getConfiguration().setResource(bind.resource());
if(m_sessionAvaliable)
sendSessionIQ();
break;