diff options
Diffstat (limited to 'Swift/Controllers/HistoryViewController.h')
-rw-r--r-- | Swift/Controllers/HistoryViewController.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Swift/Controllers/HistoryViewController.h b/Swift/Controllers/HistoryViewController.h index 4f43f47..4957e37 100644 --- a/Swift/Controllers/HistoryViewController.h +++ b/Swift/Controllers/HistoryViewController.h @@ -34,6 +34,7 @@ namespace Swift { void handleUIEvent(boost::shared_ptr<UIEvent> event); void handleSelectedContactChanged(RosterItem* item); void handleNewMessage(const HistoryMessage& message); + void addNewMessage(const HistoryMessage& message); private: JID selfJID_; @@ -45,8 +46,9 @@ namespace Swift { HistoryWindow* historyWindow_; Roster* roster_; - std::set<JID> rooms_; std::set<JID> contacts_; + std::set<JID> rooms_; + std::set<JID> roomPrivateContacts_; ContactRosterItem* selectedItem_; }; } |