aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-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;