aboutsummaryrefslogtreecommitdiff
path: root/example/example_6_rpcClient/main.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_6_rpcClient/main.cpp
parent389bec1132aea986e327e984bc5b176bcbc02d04 (diff)
downloadqxmpp-b9ec343db542bd36003175cadce1e901a5960079.tar.gz
deprecated QXmppClient::getConfiguration
Diffstat (limited to 'example/example_6_rpcClient/main.cpp')
-rw-r--r--example/example_6_rpcClient/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/example_6_rpcClient/main.cpp b/example/example_6_rpcClient/main.cpp
index 126339ee..728b75a8 100644
--- a/example/example_6_rpcClient/main.cpp
+++ b/example/example_6_rpcClient/main.cpp
@@ -33,7 +33,7 @@ int main(int argc, char *argv[])
QXmppLogger::getLogger()->setLoggingType(QXmppLogger::StdoutLogging);
rpcClient client;
- client.getConfiguration().setUseSASLAuthentication( false );
+ client.configuration().setUseSASLAuthentication( false );
client.connectToServer("jabber.geiseri.com", "client", "Passw0rd", "geiseri.com");
return a.exec();
}