diff options
author | Vlad Voicu <vladvoic@gmail.com> | 2011-05-23 16:05:31 (GMT) |
---|---|---|
committer | Vlad Voicu <vladvoic@gmail.com> | 2011-05-31 18:34:02 (GMT) |
commit | 494fbd58cfde0ed3cfe0304ce40ceb363378caf2 (patch) | |
tree | 3e35a057eacb0c2e14ee12a718cba68f6b43eca0 /Swift/Controllers/UIEvents | |
parent | 09131c6d9b3d4253002204b41e731aa8af12fcd3 (diff) | |
download | swift-contrib-494fbd58cfde0ed3cfe0304ce40ceb363378caf2.zip swift-contrib-494fbd58cfde0ed3cfe0304ce40ceb363378caf2.tar.bz2 |
fixes after code review
Diffstat (limited to 'Swift/Controllers/UIEvents')
-rw-r--r-- | Swift/Controllers/UIEvents/RequestViewHistoryUIEvent.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Controllers/UIEvents/RequestViewHistoryUIEvent.h b/Swift/Controllers/UIEvents/RequestViewHistoryUIEvent.h index 22ad2d8..884adfd 100644 --- a/Swift/Controllers/UIEvents/RequestViewHistoryUIEvent.h +++ b/Swift/Controllers/UIEvents/RequestViewHistoryUIEvent.h @@ -13,7 +13,7 @@ namespace Swift { class RequestViewHistoryUIEvent : public UIEvent { public: typedef boost::shared_ptr <RequestViewHistoryUIEvent> ref; - RequestViewHistoryUIEvent(const JID& jid = NULL) : jid(jid) { + RequestViewHistoryUIEvent(const JID& jid = "") : jid(jid) { } const JID& getJID() const { |