mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Add QT_VERSION_CHECK for QRandomGenerator
This commit is contained in:
parent
651c612eda
commit
c61d1508cb
@ -38,7 +38,9 @@
|
||||
#include <QScreen>
|
||||
#include <QStorageInfo>
|
||||
#include <cmath>
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)
|
||||
#include <QRandomGenerator>
|
||||
#endif
|
||||
|
||||
#include "common_gui.h"
|
||||
#include "version.h"
|
||||
@ -259,7 +261,11 @@ void MainWindow::SetupGUI()
|
||||
ui->actionImport_RemStar_MSeries_Data->setVisible(false);
|
||||
#endif
|
||||
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)
|
||||
QRandomGenerator(QDateTime::currentDateTime().toTime_t());
|
||||
#else
|
||||
qsrand(QDateTime::currentDateTime().toTime_t());
|
||||
#endif
|
||||
|
||||
QList<int> a;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user