diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-08-29 16:05:32 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-08-29 16:05:32 +0000 |
| commit | acb4b98372291f4541a80cf00dd880568df4b211 (patch) | |
| tree | fd270c81e720040aea2c66cd5c930da45116050e /examples/example_1_echoClient/main.cpp | |
| parent | 317ab669fae2801c2ff8cb771690c408ab6112af (diff) | |
| download | qxmpp-acb4b98372291f4541a80cf00dd880568df4b211.tar.gz | |
introduce a simpler connectToServer() function requiring only JID + password
Diffstat (limited to 'examples/example_1_echoClient/main.cpp')
| -rw-r--r-- | examples/example_1_echoClient/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/example_1_echoClient/main.cpp b/examples/example_1_echoClient/main.cpp index dc26371f..da53457f 100644 --- a/examples/example_1_echoClient/main.cpp +++ b/examples/example_1_echoClient/main.cpp @@ -33,6 +33,6 @@ int main(int argc, char *argv[]) QXmppLogger::getLogger()->setLoggingType(QXmppLogger::StdoutLogging); echoClient client; - client.connectToServer("talk.google.com", "qxmpp.test1", "qxmpp123", "gmail.com"); + client.connectToServer("qxmpp.test1@gmail.com", "qxmpp123"); return a.exec(); } |
