Use UTC time spec.

This commit is contained in:
Florian Geyer 2012-04-17 02:22:48 +02:00 committed by Felix Geyer
parent ad865774d1
commit 46bbabbe3c
5 changed files with 8 additions and 8 deletions

View file

@ -64,8 +64,8 @@ template <class T> bool Entry::set(T& property, const T& value)
void Entry::updateTimeinfo()
{
if (m_updateTimeinfo) {
m_timeInfo.setLastModificationTime(QDateTime::currentDateTime());
m_timeInfo.setLastAccessTime(QDateTime::currentDateTime());
m_timeInfo.setLastModificationTime(QDateTime::currentDateTimeUtc());
m_timeInfo.setLastAccessTime(QDateTime::currentDateTimeUtc());
}
}