diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-10-07 19:40:16 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-10-07 19:40:27 (GMT) |
commit | 88eab3d1d9b722590da3837e3c79839189ea58d2 (patch) | |
tree | 05709f368187657c5788ebf2d5206cb47414933d /Swift/Controllers/XMPPEvents | |
parent | e433e70d3dd015db5124ee72085e758635260168 (diff) | |
download | swift-88eab3d1d9b722590da3837e3c79839189ea58d2.zip swift-88eab3d1d9b722590da3837e3c79839189ea58d2.tar.bz2 |
Code cleanup from recent commits
Diffstat (limited to 'Swift/Controllers/XMPPEvents')
-rw-r--r-- | Swift/Controllers/XMPPEvents/EventController.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Controllers/XMPPEvents/EventController.h b/Swift/Controllers/XMPPEvents/EventController.h index ba3fd5b..59bc55f 100644 --- a/Swift/Controllers/XMPPEvents/EventController.h +++ b/Swift/Controllers/XMPPEvents/EventController.h @@ -24,7 +24,7 @@ namespace Swift { void handleIncomingEvent(boost::shared_ptr<StanzaEvent> sourceEvent); boost::signal<void (int)> onEventQueueLengthChange; boost::signal<void (boost::shared_ptr<StanzaEvent>)> onEventQueueEventAdded; - const EventList getEvents() const {return events_;} + const EventList& getEvents() const {return events_;} private: void handleEventConcluded(boost::shared_ptr<StanzaEvent> event); |