mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Add QT version check at journal.cpp:262
This commit is contained in:
parent
e7309ea708
commit
e921e7dee5
@ -259,7 +259,11 @@ void BackupJournal(QString filename)
|
||||
|
||||
if (journal->settingExists(LastUpdated)) {
|
||||
QDateTime dt = sess->settings[LastUpdated].toDateTime();
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5,8,0)
|
||||
qint64 dtx = dt.toMSecsSinceEpoch()/1000L;
|
||||
#elif
|
||||
qint64 dtx = dt.toSecsSinceEpoch();
|
||||
#endif
|
||||
QString dts = QString::number(dtx);
|
||||
stream.writeAttribute("lastupdated", dts);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user