aboutsummaryrefslogtreecommitdiff
path: root/example/example_4_callHandling/xmppClient.cpp
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2010-08-09 17:04:06 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2010-08-09 17:04:06 +0000
commitb9ec343db542bd36003175cadce1e901a5960079 (patch)
tree3daf51e45a68dd855da54d9a3e082839535830ec /example/example_4_callHandling/xmppClient.cpp
parent389bec1132aea986e327e984bc5b176bcbc02d04 (diff)
downloadqxmpp-b9ec343db542bd36003175cadce1e901a5960079.tar.gz
deprecated QXmppClient::getConfiguration
Diffstat (limited to 'example/example_4_callHandling/xmppClient.cpp')
-rw-r--r--example/example_4_callHandling/xmppClient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/example_4_callHandling/xmppClient.cpp b/example/example_4_callHandling/xmppClient.cpp
index 93bbba07..48c35391 100644
--- a/example/example_4_callHandling/xmppClient.cpp
+++ b/example/example_4_callHandling/xmppClient.cpp
@@ -101,7 +101,7 @@ void xmppClient::slotPresenceReceived(const QXmppPresence &presence)
// if we are the recipient, or if the presence is not from the recipient,
// do nothing
- if (getConfiguration().jidBare() == recipient ||
+ if (configuration().jidBare() == recipient ||
jidToBareJid(presence.from()) != recipient ||
presence.type() != QXmppPresence::Available)
return;