diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-10-15 20:22:24 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-10-15 20:22:24 (GMT) |
commit | 10d8877b9251d5408da9ac3a5eafb066de121bc6 (patch) | |
tree | 40437f01b7aaab6de7d74c01659a5c6b3656e635 /Swiften/Client/ClientSessionStanzaChannel.cpp | |
parent | 8f73a49aeabc9c3acb64b69e1c428a8341538865 (diff) | |
download | swift-contrib-10d8877b9251d5408da9ac3a5eafb066de121bc6.zip swift-contrib-10d8877b9251d5408da9ac3a5eafb066de121bc6.tar.bz2 |
Added Component.
Diffstat (limited to 'Swiften/Client/ClientSessionStanzaChannel.cpp')
-rw-r--r-- | Swiften/Client/ClientSessionStanzaChannel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/Client/ClientSessionStanzaChannel.cpp b/Swiften/Client/ClientSessionStanzaChannel.cpp index 7656d06..996196b 100644 --- a/Swiften/Client/ClientSessionStanzaChannel.cpp +++ b/Swiften/Client/ClientSessionStanzaChannel.cpp @@ -43,7 +43,7 @@ void ClientSessionStanzaChannel::send(boost::shared_ptr<Stanza> stanza) { session->sendStanza(stanza); } -void ClientSessionStanzaChannel::handleSessionFinished(boost::shared_ptr<Error> error) { +void ClientSessionStanzaChannel::handleSessionFinished(boost::shared_ptr<Error>) { session->onFinished.disconnect(boost::bind(&ClientSessionStanzaChannel::handleSessionFinished, this, _1)); session->onStanzaReceived.disconnect(boost::bind(&ClientSessionStanzaChannel::handleStanza, this, _1)); session->onStanzaAcked.disconnect(boost::bind(&ClientSessionStanzaChannel::handleStanzaAcked, this, _1)); |