mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Fix multiple regressions that broke compilation with clang.
e633a82
: overloaded virtual method errors0022510
: inconsistent missing override errore358d31
: unused private fields3591f11
: unused private fields
This commit is contained in:
parent
89edb3f077
commit
9cbd0d7b24
@ -159,8 +159,8 @@ private:
|
|||||||
qint64 m_lastmaxx;
|
qint64 m_lastmaxx;
|
||||||
QPoint last_mouse=QPoint(0,0);
|
QPoint last_mouse=QPoint(0,0);
|
||||||
|
|
||||||
EventDataType m_last_height=0; // re-calculate only when needed.
|
//EventDataType m_last_height=0; // re-calculate only when needed.
|
||||||
int m_last_peaktime=0; // re-calculate only when needed.
|
//int m_last_peaktime=0; // re-calculate only when needed.
|
||||||
|
|
||||||
bool isEnabled(ChannelID id) ;
|
bool isEnabled(ChannelID id) ;
|
||||||
QString topBarLabel;
|
QString topBarLabel;
|
||||||
|
@ -914,16 +914,16 @@ public:
|
|||||||
bool save(QByteArray dataBA); // save the next record in the file
|
bool save(QByteArray dataBA); // save the next record in the file
|
||||||
|
|
||||||
private:
|
private:
|
||||||
DV6_HEADER hdr; // file header
|
//DV6_HEADER hdr; // file header
|
||||||
QString filetype;
|
QString filetype;
|
||||||
QFile hFile;
|
QFile hFile;
|
||||||
|
|
||||||
int record_length; // Length of record block in incoming file
|
//int record_length; // Length of record block in incoming file
|
||||||
const int maxHistFileSize = 20*10e6; // Maximum size of file before we create a new file
|
//const int maxHistFileSize = 20*10e6; // Maximum size of file before we create a new file
|
||||||
|
|
||||||
int numWritten; // Number of records written
|
//int numWritten; // Number of records written
|
||||||
quint32 lastTimestamp;
|
//quint32 lastTimestamp;
|
||||||
unsigned int wrap_record;
|
//unsigned int wrap_record;
|
||||||
};
|
};
|
||||||
|
|
||||||
bool RollingBackup::open (const QString filetype, DV6_HEADER * newhdr) {
|
bool RollingBackup::open (const QString filetype, DV6_HEADER * newhdr) {
|
||||||
|
@ -478,10 +478,6 @@ class PRS1Loader : public CPAPLoader
|
|||||||
quint16 size, int family, int familyVersion);
|
quint16 size, int family, int familyVersion);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//! \brief Open a PRS1 data file, and break into data chunks, delivering them to the correct parser.
|
|
||||||
bool OpenFile(Machine *mach, const QString & filename);
|
|
||||||
|
|
||||||
QHash<SessionID, Session *> extra_session;
|
QHash<SessionID, Session *> extra_session;
|
||||||
|
|
||||||
//! \brief PRS1 Data files can store multiple sessions, so store them in this list for later processing.
|
//! \brief PRS1 Data files can store multiple sessions, so store them in this list for later processing.
|
||||||
|
@ -251,7 +251,7 @@ void backupSTRfiles( const QString strpath, const QString importPath, const QStr
|
|||||||
MachineInfo & info, QMap<QDate, STRFile> & STRmap ); // forward
|
MachineInfo & info, QMap<QDate, STRFile> & STRmap ); // forward
|
||||||
ResMedEDFInfo * fetchSTRandVerify( QString filename, QString serialNumber ); // forward
|
ResMedEDFInfo * fetchSTRandVerify( QString filename, QString serialNumber ); // forward
|
||||||
|
|
||||||
int ResmedLoader::Open(const QString & dirpath, ResDaySaveCallback s) // alternate for unit testing
|
int ResmedLoader::OpenWithCallback(const QString & dirpath, ResDaySaveCallback s) // alternate for unit testing
|
||||||
{
|
{
|
||||||
ResDaySaveCallback origCallback = saveCallback;
|
ResDaySaveCallback origCallback = saveCallback;
|
||||||
saveCallback = s;
|
saveCallback = s;
|
||||||
|
@ -134,7 +134,7 @@ class ResmedLoader : public CPAPLoader
|
|||||||
volatile int sessionCount;
|
volatile int sessionCount;
|
||||||
static void SaveSession(ResmedLoader* loader, Session* session);
|
static void SaveSession(ResmedLoader* loader, Session* session);
|
||||||
ResDaySaveCallback saveCallback;
|
ResDaySaveCallback saveCallback;
|
||||||
int Open(const QString & dirpath, ResDaySaveCallback s);
|
int OpenWithCallback(const QString & dirpath, ResDaySaveCallback s);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
//! \brief The STR.edf file is a unique edf file with many signals
|
//! \brief The STR.edf file is a unique edf file with many signals
|
||||||
|
@ -304,7 +304,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
void UpdateEventsTree(QTreeWidget * tree,Day *day);
|
void UpdateEventsTree(QTreeWidget * tree,Day *day);
|
||||||
|
|
||||||
virtual bool eventFilter(QObject *object, QEvent *event) override;
|
virtual bool eventFilter(QObject *object, QEvent *event);
|
||||||
|
|
||||||
void updateCube();
|
void updateCube();
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ static void parseAndEmitSessionYaml(const QString & path)
|
|||||||
// necessary for testing. Both are used for now in order to introduce the minimal
|
// necessary for testing. Both are used for now in order to introduce the minimal
|
||||||
// set of changes into the Resmed loader needed for testing.
|
// set of changes into the Resmed loader needed for testing.
|
||||||
s_currentPath = path;
|
s_currentPath = path;
|
||||||
s_loader->Open(path, emitSessionYaml);
|
s_loader->OpenWithCallback(path, emitSessionYaml);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ResmedTests::testSessionsToYaml()
|
void ResmedTests::testSessionsToYaml()
|
||||||
|
Loading…
Reference in New Issue
Block a user