summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCatalin Badea <catalin.badea392@gmail.com>2012-07-27 19:59:24 (GMT)
committerCatalin Badea <catalin.badea392@gmail.com>2012-07-27 19:59:24 (GMT)
commitea3285a7e50cf107ae24cd1fbbb01e753b94bf36 (patch)
tree5ed3d4426c292f29b59deeee7a11d41c91533dd8 /Swift/Controllers
parent0cb7b193cd197efb28ddd14f1df2ab5e01a37609 (diff)
downloadswift-contrib-ea3285a7e50cf107ae24cd1fbbb01e753b94bf36.zip
swift-contrib-ea3285a7e50cf107ae24cd1fbbb01e753b94bf36.tar.bz2
fix localtime utc conversion issues
Diffstat (limited to 'Swift/Controllers')
-rw-r--r--Swift/Controllers/HistoryController.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/Swift/Controllers/HistoryController.cpp b/Swift/Controllers/HistoryController.cpp
index deda25b..c03cc2c 100644
--- a/Swift/Controllers/HistoryController.cpp
+++ b/Swift/Controllers/HistoryController.cpp
@@ -7,6 +7,7 @@
#include <Swift/Controllers/HistoryController.h>
#include <Swiften/History/SQLiteHistoryManager.h>
#include <Swiften/History/HistoryMessage.h>
+#include <boost/date_time/c_local_time_adjustor.hpp>
namespace Swift {
@@ -20,7 +21,9 @@ HistoryController::~HistoryController() {
}
void HistoryController::addMessage(const std::string& message, const JID& fromJID, const JID& toJID, HistoryMessage::Type type, const boost::posix_time::ptime& timeStamp) {
- HistoryMessage historyMessage(message, fromJID, toJID, type, timeStamp);
+ // note: using localtime timestamps
+ HistoryMessage historyMessage(message, fromJID, toJID, type, boost::date_time::c_local_adjustor<boost::posix_time::ptime>::utc_to_local(timeStamp));
+
localHistory_->addMessage(historyMessage);
onNewMessage(historyMessage);
}