diff --git a/sleepyhead/SleepLib/loader_plugins/resmed_loader.cpp b/sleepyhead/SleepLib/loader_plugins/resmed_loader.cpp index 0094f7de..cf8165b6 100644 --- a/sleepyhead/SleepLib/loader_plugins/resmed_loader.cpp +++ b/sleepyhead/SleepLib/loader_plugins/resmed_loader.cpp @@ -19,6 +19,7 @@ #include #include "resmed_loader.h" + #include "SleepLib/session.h" #include "SleepLib/calcs.h" @@ -1366,7 +1367,7 @@ int ResmedLoader::scanFiles(Machine * mach, QString datalog_path) SessionID sid; bool ok; do { - line = impstream.readLine(); + impstream >> line; file = line.section(',',0,0); str = line.section(',',1); sid = str.toInt(&ok); @@ -1377,6 +1378,7 @@ int ResmedLoader::scanFiles(Machine * mach, QString datalog_path) } impfile.close(); + QStringList dirs; dirs.push_back(datalog_path); @@ -1724,7 +1726,7 @@ int ResmedLoader::scanFiles(Machine * mach, QString datalog_path) if (impfile.open(QFile::WriteOnly)) { QTextStream out(&impfile); - out << mach->serial(); + out << mach->serial() << "\n"; QHash::iterator skit; QHash::iterator skit_end = skipfiles.end(); for (skit = skipfiles.begin(); skit != skit_end; ++skit) { @@ -1880,7 +1882,7 @@ int ResmedLoader::Open(QString path) dir.setFilter(QDir::Files | QDir::Hidden | QDir::Readable); QFileInfoList flist = dir.entryInfoList(); - { + int size = flist.size(); for (int i = 0; i < size; i++) { QFileInfo fi = flist.at(i); @@ -1889,7 +1891,7 @@ int ResmedLoader::Open(QString path) strfiles.push_back(fi.filePath()); } } - } + strsess.clear(); ParseSTR(m, strfiles); diff --git a/sleepyhead/SleepLib/loader_plugins/resmed_loader.h b/sleepyhead/SleepLib/loader_plugins/resmed_loader.h index 5b8a4b10..38b3f190 100644 --- a/sleepyhead/SleepLib/loader_plugins/resmed_loader.h +++ b/sleepyhead/SleepLib/loader_plugins/resmed_loader.h @@ -93,8 +93,6 @@ struct STRRecord ramp_pressure = -1; - - date=QDate(); } STRRecord(const STRRecord & copy) { @@ -268,7 +266,7 @@ class ResmedLoader : public CPAPLoader virtual MachineInfo PeekInfo(const QString & path); - //! \brief Scans for S9 SD folder structure signature, and loads any new data if found + //! \brief Scans for ResMed SD folder structure signature, and loads any new data if found virtual int Open(QString path); //! \brief Returns the version number of this ResMed loader