summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCatalin Badea <catalin.badea392@gmail.com>2012-07-17 11:05:23 (GMT)
committerCatalin Badea <catalin.badea392@gmail.com>2012-07-17 11:05:23 (GMT)
commit6d7c3ed028d080c1b8ea2c233c61435afcaacbb6 (patch)
tree6087da331955e40264fba4934623c2aa55bd5467 /Swift/Controllers/HistoryController.cpp
parentcc6459b1b5b4f8d7853623fe9d85817f0d14ca26 (diff)
downloadswift-contrib-6d7c3ed028d080c1b8ea2c233c61435afcaacbb6.zip
swift-contrib-6d7c3ed028d080c1b8ea2c233c61435afcaacbb6.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);
}
}