obsolete Methods - complete

This commit is contained in:
LoudSnorer 2023-02-18 09:22:34 -05:00
parent 6466a8ddad
commit e7c690925e
4 changed files with 15 additions and 5 deletions

View File

@ -94,8 +94,13 @@ int SomnoposeLoader::OpenFile(const QString & filename)
return -1; return -1;
} }
#if QT_VERSION >= QT_VERSION_CHECK(5,14,0)
QDateTime epoch(QDate(2001, 1, 1).startOfDay(Qt::OffsetFromUTC));
qint64 ep = epoch.toMSecsSinceEpoch() , time=0;
#else
QDateTime epoch(QDate(2001, 1, 1)); QDateTime epoch(QDate(2001, 1, 1));
qint64 ep = qint64(epoch.toTime_t()+epoch.offsetFromUtc()) * 1000, time=0; qint64 ep = qint64(epoch.toTime_t()+epoch.offsetFromUtc()) * 1000, time=0;
#endif
qDebug() << "Epoch starts at" << epoch.toString(); qDebug() << "Epoch starts at" << epoch.toString();
double timestamp, orientation=0, inclination=0, movement=0; double timestamp, orientation=0, inclination=0, movement=0;

View File

@ -159,7 +159,7 @@ void Profile::addLock()
QFile lockfile(p_path+"lockfile"); QFile lockfile(p_path+"lockfile");
lockfile.open(QFile::WriteOnly); lockfile.open(QFile::WriteOnly);
QByteArray ba; QByteArray ba;
ba.append(QHostInfo::localHostName()); ba.append(QHostInfo::localHostName().toUtf8());
lockfile.write(ba); lockfile.write(ba);
lockfile.close(); lockfile.close();
} }

View File

@ -193,7 +193,11 @@ void LogThread::run()
while (connected && m_logFile && !buffer.isEmpty()) { while (connected && m_logFile && !buffer.isEmpty()) {
QString msg = buffer.takeFirst(); QString msg = buffer.takeFirst();
if (m_logStream) { if (m_logStream) {
#if QT_VERSION >= QT_VERSION_CHECK(5,14,0)
*m_logStream << msg << Qt::endl;
#else
*m_logStream << msg << endl; *m_logStream << msg << endl;
#endif
} }
emit outputLog(msg); emit outputLog(msg);
} }

View File

@ -38,6 +38,7 @@
#include <QScreen> #include <QScreen>
#include <QStorageInfo> #include <QStorageInfo>
#include <cmath> #include <cmath>
#include <QRandomGenerator>
#include "common_gui.h" #include "common_gui.h"
#include "version.h" #include "version.h"
@ -257,7 +258,7 @@ void MainWindow::SetupGUI()
ui->actionImport_RemStar_MSeries_Data->setVisible(false); ui->actionImport_RemStar_MSeries_Data->setVisible(false);
#endif #endif
qsrand(QDateTime::currentDateTime().toTime_t()); QRandomGenerator(QDateTime::currentDateTime().toTime_t());
QList<int> a; QList<int> a;