diff options
| author | Remko Tronçon <git@el-tramo.be> | 2010-12-22 20:18:24 (GMT) | 
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2010-12-22 20:18:24 (GMT) | 
| commit | 04b99ce8430109d0467c29c85cb6bacb85c54c44 (patch) | |
| tree | 2c5e15de1a4d3636df7eb8530ebe864722be82c4 /SwifTools/Notifier/GNTPNotifier.cpp | |
| parent | 9e35dfd2f3a1fbc88bb800c8bf167035b0bd0582 (diff) | |
| download | swift-04b99ce8430109d0467c29c85cb6bacb85c54c44.zip swift-04b99ce8430109d0467c29c85cb6bacb85c54c44.tar.bz2  | |
Fixed compilation on non-Windows platforms.
Diffstat (limited to 'SwifTools/Notifier/GNTPNotifier.cpp')
| -rw-r--r-- | SwifTools/Notifier/GNTPNotifier.cpp | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/SwifTools/Notifier/GNTPNotifier.cpp b/SwifTools/Notifier/GNTPNotifier.cpp index ab2ab09..924b921 100644 --- a/SwifTools/Notifier/GNTPNotifier.cpp +++ b/SwifTools/Notifier/GNTPNotifier.cpp @@ -4,6 +4,8 @@   * See Documentation/Licenses/GPLv3.txt for more information.   */ +// FIXME: This notifier needs finishing (handling callbacks etc.) +  #include "SwifTools/Notifier/GNTPNotifier.h"  #include <cassert> @@ -49,7 +51,7 @@ void GNTPNotifier::send(const std::string& message) {  	currentConnection->connect(HostAddressPort(HostAddress("127.0.0.1"), 23053));  } -void GNTPNotifier::showMessage(Type type, const String& subject, const String& description, const boost::filesystem::path& picture, boost::function<void()> callback) { +void GNTPNotifier::showMessage(Type type, const String& subject, const String& description, const boost::filesystem::path& picture, boost::function<void()>) {  	if (registered) {  		std::ostringstream message;  		message << "GNTP/1.0 NOTIFY NONE\r\n"; @@ -74,7 +76,7 @@ void GNTPNotifier::handleConnectFinished(bool error) {  	}  } -void GNTPNotifier::handleDataRead(const ByteArray& data) { +void GNTPNotifier::handleDataRead(const ByteArray&) {  	currentConnection->onDataRead.disconnect(boost::bind(&GNTPNotifier::handleDataRead, this, _1));  	currentConnection->onConnectFinished.disconnect(boost::bind(&GNTPNotifier::handleConnectFinished, this, _1));  	currentConnection.reset();  | 
 Swift