diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-06-24 15:38:30 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-06-24 15:38:30 (GMT) |
commit | 0eeb4f028cc9fc1006cc767d93509383b7f33ad8 (patch) | |
tree | 9aed0001edf3b06123dda8f2bb099e49485933e5 | |
parent | fead5b2c5492a076294aceb0b0cb3e35f5a76b56 (diff) | |
download | swift-0eeb4f028cc9fc1006cc767d93509383b7f33ad8.zip swift-0eeb4f028cc9fc1006cc767d93509383b7f33ad8.tar.bz2 |
Fixed connectivitytest compilation.
-rw-r--r-- | Swiften/Examples/ConnectivityTest/ConnectivityTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/Examples/ConnectivityTest/ConnectivityTest.cpp b/Swiften/Examples/ConnectivityTest/ConnectivityTest.cpp index 3564433..c957481 100644 --- a/Swiften/Examples/ConnectivityTest/ConnectivityTest.cpp +++ b/Swiften/Examples/ConnectivityTest/ConnectivityTest.cpp @@ -44,7 +44,7 @@ void handleServerDiscoInfoResponse(boost::shared_ptr<DiscoInfo> /*info*/, ErrorP void handleConnected() { exitCode = NO_RESPONSE; GetDiscoInfoRequest::ref discoInfoRequest = GetDiscoInfoRequest::create(JID(), client->getIQRouter()); - discoInfoRequest->onResponse.connect(handleServerDiscoInfoResponse); + discoInfoRequest->onResponse.connect(&handleServerDiscoInfoResponse); discoInfoRequest->send(); } |