summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMateusz Piekos <mateuszpiekos@gmail.com>2012-06-05 15:54:11 (GMT)
committerMateusz Piekos <mateuszpiekos@gmail.com>2012-06-05 15:54:11 (GMT)
commitfa2edf2f9dfa77129e749373d7045b98d1dcced5 (patch)
tree037e6a8322d7bd323d665ab47c36ec4a86ba50e3 /Swift/Controllers/UIEvents/RequestWhiteboardUIEvent.h
parent21e358a55e6eee1036fe95993c5715382d08c0c8 (diff)
downloadswift-contrib-fa2edf2f9dfa77129e749373d7045b98d1dcced5.zip
swift-contrib-fa2edf2f9dfa77129e749373d7045b98d1dcced5.tar.bz2
Added function responsible for instances of WhiteboardWindows
Diffstat (limited to 'Swift/Controllers/UIEvents/RequestWhiteboardUIEvent.h')
-rw-r--r--Swift/Controllers/UIEvents/RequestWhiteboardUIEvent.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Controllers/UIEvents/RequestWhiteboardUIEvent.h b/Swift/Controllers/UIEvents/RequestWhiteboardUIEvent.h
index 679bdc2..f5b995b 100644
--- a/Swift/Controllers/UIEvents/RequestWhiteboardUIEvent.h
+++ b/Swift/Controllers/UIEvents/RequestWhiteboardUIEvent.h
@@ -14,7 +14,7 @@ namespace Swift {
class RequestWhiteboardUIEvent : public UIEvent {
public:
RequestWhiteboardUIEvent(const JID& contact) : contact_(contact) {};
- JID getContact() {return contact_;}
+ const JID& getContact() const {return contact_;}
private:
JID contact_;
};