mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
updated resvert loader to compile on older versions of QT. QT5.9 and qt5.12
This commit is contained in:
parent
3b724ea5ca
commit
d487247c80
@ -27,6 +27,7 @@
|
||||
#include <unordered_map>
|
||||
|
||||
#include "resvent_loader.h"
|
||||
#include "assert.h"
|
||||
|
||||
#ifdef DEBUG_EFFICIENCY
|
||||
#include <QElapsedTimer> // 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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user