diff options
Diffstat (limited to 'Swift/Controllers/HistoryController.cpp')
| -rw-r--r-- | Swift/Controllers/HistoryController.cpp | 4 | 
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);  }  }  | 
 Swift