From c46f1404db9774f7c0cea81b3857cf4443347ff3 Mon Sep 17 00:00:00 2001 From: reznet Date: Tue, 11 Aug 2015 15:52:19 -0500 Subject: [PATCH] Generate bookmark text with local time zone Use the local time zone to generate the strings displayed for new bookmarks. These are displayed to the user and are not saved to disk. --- sleepyhead/daily.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sleepyhead/daily.cpp b/sleepyhead/daily.cpp index acc5c516..55be7593 100644 --- a/sleepyhead/daily.cpp +++ b/sleepyhead/daily.cpp @@ -2216,7 +2216,7 @@ void Daily::on_bookmarkTable_itemClicked(QTableWidgetItem *item) void Daily::addBookmark(qint64 st, qint64 et, QString text) { ui->bookmarkTable->blockSignals(true); - QDateTime d=QDateTime::fromTime_t(st/1000L, Qt::UTC); + QDateTime d=QDateTime::fromTime_t(st/1000L, Qt::LocalTime); int row=ui->bookmarkTable->rowCount(); ui->bookmarkTable->insertRow(row); QTableWidgetItem *tw=new QTableWidgetItem(text); @@ -2244,7 +2244,7 @@ void Daily::on_addBookmarkButton_clicked() { qint64 st,et; GraphView->GetXBounds(st,et); - QDateTime d=QDateTime::fromTime_t(st/1000L); + QDateTime d=QDateTime::fromTime_t(st/1000L, Qt::LocalTime); addBookmark(st,et, tr("Bookmark at %1").arg(d.time().toString("HH:mm:ss"))); }