mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fix problems resulting in compiler warning messages
This commit is contained in:
parent
5e16e18b4c
commit
5cf6e14816
@ -5719,7 +5719,7 @@ PRS1DataChunk* PRS1DataChunk::ParseNext(QFile & f)
|
|||||||
int sessionid_base = (chunk->fileVersion == 2 ? 10 : 16);
|
int sessionid_base = (chunk->fileVersion == 2 ? 10 : 16);
|
||||||
if (chunk->family == 3 && chunk->familyVersion >= 3) sessionid_base = 16;
|
if (chunk->family == 3 && chunk->familyVersion >= 3) sessionid_base = 16;
|
||||||
QString session_s = fi.fileName().section(".", 0, -2);
|
QString session_s = fi.fileName().section(".", 0, -2);
|
||||||
quint32 sid = session_s.toInt(&numeric, sessionid_base);
|
qint32 sid = session_s.toInt(&numeric, sessionid_base);
|
||||||
if (!numeric || sid != chunk->sessionid) {
|
if (!numeric || sid != chunk->sessionid) {
|
||||||
qDebug() << chunk->m_path << chunk->sessionid;
|
qDebug() << chunk->m_path << chunk->sessionid;
|
||||||
}
|
}
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
#include "statistics.h"
|
#include "statistics.h"
|
||||||
#include "cprogressBar.h"
|
#include "cprogressbar.h"
|
||||||
#include "SleepLib/common.h"
|
#include "SleepLib/common.h"
|
||||||
|
|
||||||
extern MainWindow *mainwin;
|
extern MainWindow *mainwin;
|
||||||
|
Loading…
Reference in New Issue
Block a user