From 28d6827664f5a934fda91f39c7d0bf4addb130dc Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Fri, 8 Jun 2018 14:18:32 +1000 Subject: [PATCH] Don't ditch deprecated QFileInfo::created too early --- sleepyhead/UpdaterWindow.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sleepyhead/UpdaterWindow.cpp b/sleepyhead/UpdaterWindow.cpp index 29bbd3f7..5b9bb96a 100644 --- a/sleepyhead/UpdaterWindow.cpp +++ b/sleepyhead/UpdaterWindow.cpp @@ -99,7 +99,11 @@ void UpdaterWindow::checkForUpdates() // Check updates.xml file if it's still recent.. if (QFile::exists(filename)) { QFileInfo fi(filename); +#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) QDateTime created = fi.birthTime(); +#else + QDateTime created = fi.created(); +#endif int age = created.secsTo(QDateTime::currentDateTime()); if (age < 900) {