summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMateusz Piekos <mateuszpiekos@gmail.com>2012-07-30 07:11:18 (GMT)
committerMateusz Piekos <mateuszpiekos@gmail.com>2012-07-30 07:11:18 (GMT)
commit5fafa602d859657d6616acdbb63dfcd501aed9a0 (patch)
tree1d74dc4871b888ab298c756598c3ad9a422588a5 /Swiften/Whiteboard/OutgoingWhiteboardSession.h
parent944b240a9f72f967f3fd2a840e4efbd2f0ef4183 (diff)
downloadswift-contrib-5fafa602d859657d6616acdbb63dfcd501aed9a0.zip
swift-contrib-5fafa602d859657d6616acdbb63dfcd501aed9a0.tar.bz2
Exchanged client and server roles in whiteboard session classes
Diffstat (limited to 'Swiften/Whiteboard/OutgoingWhiteboardSession.h')
-rw-r--r--Swiften/Whiteboard/OutgoingWhiteboardSession.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/Whiteboard/OutgoingWhiteboardSession.h b/Swiften/Whiteboard/OutgoingWhiteboardSession.h
index 149e483..fb9caed 100644
--- a/Swiften/Whiteboard/OutgoingWhiteboardSession.h
+++ b/Swiften/Whiteboard/OutgoingWhiteboardSession.h
@@ -7,7 +7,7 @@
#pragma once
#include <Swiften/Whiteboard/WhiteboardSession.h>
-#include <Swiften/Whiteboard/WhiteboardClient.h>
+#include <Swiften/Whiteboard/WhiteboardServer.h>
#include <boost/shared_ptr.hpp>
#include <Swiften/Queries/GenericRequest.h>
@@ -27,6 +27,6 @@ namespace Swift {
void handleIncomingOperation(WhiteboardOperation::ref operation);
void sendOperation(WhiteboardOperation::ref operation);
- WhiteboardClient client;
+ WhiteboardServer server;
};
}