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

@ -46,8 +46,8 @@ template <class T> bool Group::set(T& property, const T& value) {
if (property != value) {
property = value;
if (m_updateTimeinfo) {
m_timeInfo.setLastModificationTime(QDateTime::currentDateTime());
m_timeInfo.setLastAccessTime(QDateTime::currentDateTime());
m_timeInfo.setLastModificationTime(QDateTime::currentDateTimeUtc());
m_timeInfo.setLastAccessTime(QDateTime::currentDateTimeUtc());
}
Q_EMIT modified();
return true;