From d487247c80c9c6eba192bc016d6ef2ac26d73b32 Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Wed, 10 May 2023 11:09:22 -0400 Subject: [PATCH] updated resvert loader to compile on older versions of QT. QT5.9 and qt5.12 --- oscar/SleepLib/loader_plugins/resvent_loader.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/oscar/SleepLib/loader_plugins/resvent_loader.cpp b/oscar/SleepLib/loader_plugins/resvent_loader.cpp index 364e814a..309422a2 100644 --- a/oscar/SleepLib/loader_plugins/resvent_loader.cpp +++ b/oscar/SleepLib/loader_plugins/resvent_loader.cpp @@ -27,6 +27,7 @@ #include #include "resvent_loader.h" +#include "assert.h" #ifdef DEBUG_EFFICIENCY #include // only available in 4.8 @@ -227,7 +228,11 @@ void LoadEvents(const QString& session_folder_path, Session* session, const Usag while (!f.atEnd()) { QString line = f.readLine().trimmed(); +#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0) const auto elems = line.split(",", Qt::SkipEmptyParts); +#else + const auto elems = line.split(",", QString::SkipEmptyParts); +#endif if (elems.size() != 4) { continue; }