diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-09-12 21:37:23 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-09-12 21:37:57 (GMT) |
commit | 326c0620a103d621bcdd74341cd0117816acca03 (patch) | |
tree | 03195c594b88d478f2c01576ebc6e87f7668b595 /Swiften/Examples/EchoBot/EchoBot.cpp | |
parent | 0da93507bea788cf6bd8f327478caddf3ea679e5 (diff) | |
download | swift-contrib-326c0620a103d621bcdd74341cd0117816acca03.zip swift-contrib-326c0620a103d621bcdd74341cd0117816acca03.tar.bz2 |
Remove IQRouter from client inheritance list.
Diffstat (limited to 'Swiften/Examples/EchoBot/EchoBot.cpp')
-rw-r--r-- | Swiften/Examples/EchoBot/EchoBot.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/Examples/EchoBot/EchoBot.cpp b/Swiften/Examples/EchoBot/EchoBot.cpp index 1c576c9..0474287 100644 --- a/Swiften/Examples/EchoBot/EchoBot.cpp +++ b/Swiften/Examples/EchoBot/EchoBot.cpp @@ -29,7 +29,7 @@ class EchoBot { private: void handleConnected() { - shared_ptr<GetRosterRequest> rosterRequest(new GetRosterRequest(client)); + shared_ptr<GetRosterRequest> rosterRequest(new GetRosterRequest(client->getIQRouter())); rosterRequest->onResponse.connect(bind(&EchoBot::handleRosterReceived, this, _2)); rosterRequest->send(); } |