summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-02-15 21:40:52 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-02-15 21:40:52 (GMT)
commit44bc44dee791570909b4b3d5f6f6f9f9ac07bba7 (patch)
tree54f59ca3b3ccc6de3a4225ff486794609a8cb1da /Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot4.cpp
parent385100e2bc6bda5d18c4fb833e1e757ef5d5c4a0 (diff)
downloadswift-44bc44dee791570909b4b3d5f6f6f9f9ac07bba7.zip
swift-44bc44dee791570909b4b3d5f6f6f9f9ac07bba7.tar.bz2
Make JID constructor with string implicit.
This avoids the need to explicitly contruct a JID where a string is used.
Diffstat (limited to 'Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot4.cpp')
-rw-r--r--Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot4.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot4.cpp b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot4.cpp
index fc846d3..c2f555c 100644
--- a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot4.cpp
+++ b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot4.cpp
@@ -17,7 +17,7 @@ class EchoBot {
public:
EchoBot(NetworkFactories* networkFactories) {
//...
- client = new Client(JID("echobot@wonderland.lit"), "mypass", networkFactories);
+ client = new Client("echobot@wonderland.lit", "mypass", networkFactories);
client->onConnected.connect(bind(&EchoBot::handleConnected, this));
client->onMessageReceived.connect(
bind(&EchoBot::handleMessageReceived, this, _1));