summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCatalin Badea <catalin.badea392@gmail.com>2012-07-17 11:05:23 (GMT)
committerCătălin Badea <catalin.badea392@gmail.com>2012-08-11 15:59:12 (GMT)
commit3af84bc87419831e26a85321c1c970aecd18d2c7 (patch)
tree02d0930265cfbdebfbf32bbad072b426b856feb5 /Swift/Controllers/HistoryController.cpp
parent5e736fe9601d1af367d564b94666372661f70d2a (diff)
downloadswift-contrib-3af84bc87419831e26a85321c1c970aecd18d2c7.zip
swift-contrib-3af84bc87419831e26a85321c1c970aecd18d2c7.tar.bz2
Added signal handlers in history window.
Diffstat (limited to 'Swift/Controllers/HistoryController.cpp')
-rw-r--r--Swift/Controllers/HistoryController.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swift/Controllers/HistoryController.cpp b/Swift/Controllers/HistoryController.cpp
index fe54e79..d52e2b2 100644
--- a/Swift/Controllers/HistoryController.cpp
+++ b/Swift/Controllers/HistoryController.cpp
@@ -29,8 +29,8 @@ std::vector<HistoryMessage> HistoryController::getMessages(const JID& selfJID, c
return localHistory_->getMessages(selfJID, contactJID, type);
}
-std::set<JID> HistoryController::getContacts(const JID& selfJID, HistoryMessage::Type type) const {
- return localHistory_->getContacts(selfJID, type);
+std::set<JID> HistoryController::getContacts(const JID& selfJID, HistoryMessage::Type type, const std::string& keyword) const {
+ return localHistory_->getContacts(selfJID, type, keyword);
}
}