summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCatalin Badea <catalin.badea392@gmail.com>2012-07-01 21:47:54 (GMT)
committerCatalin Badea <catalin.badea392@gmail.com>2012-07-01 21:47:54 (GMT)
commitfbeef036efeabe1218490f5a7659d8779350af7c (patch)
tree7146244351d6375b40640f81cbc3580ade0808e6 /Swift/Controllers/HistoryController.cpp
parent831075a8aeb15dc79c84d28d284b5cdbae2f60ea (diff)
downloadswift-contrib-fbeef036efeabe1218490f5a7659d8779350af7c.zip
swift-contrib-fbeef036efeabe1218490f5a7659d8779350af7c.tar.bz2
update history window on new message
Diffstat (limited to 'Swift/Controllers/HistoryController.cpp')
-rw-r--r--Swift/Controllers/HistoryController.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Swift/Controllers/HistoryController.cpp b/Swift/Controllers/HistoryController.cpp
index a25c40f..5bd4ffa 100644
--- a/Swift/Controllers/HistoryController.cpp
+++ b/Swift/Controllers/HistoryController.cpp
@@ -22,6 +22,7 @@ HistoryController::~HistoryController() {
void HistoryController::addMessage(const std::string& message, const JID& fromJID, const JID& toJID, bool isGroupChat, const boost::posix_time::ptime& timeStamp) {
HistoryMessage historyMessage(message, fromJID, toJID, isGroupChat, timeStamp);
localHistory_->addMessage(historyMessage);
+ onNewMessage(historyMessage);
}
std::vector<HistoryMessage> HistoryController::getMessages(const JID& selfJID, const JID& contactJID, bool isGroupChat) const {