diff --git a/oscar/SleepLib/loader_plugins/prs1_loader.cpp b/oscar/SleepLib/loader_plugins/prs1_loader.cpp index a7867949..ffb480c7 100644 --- a/oscar/SleepLib/loader_plugins/prs1_loader.cpp +++ b/oscar/SleepLib/loader_plugins/prs1_loader.cpp @@ -8700,7 +8700,6 @@ void PRS1Loader::initChannels() "??", STR_UNIT_Seconds, DEFAULT, QColor("#ffe8f0"))); - qDebug() << channel[PRS1_0E].defaultColor(); channel.add(GRP_CPAP, new Channel(PRS1_BND = 0x1159, SPAN, MT_CPAP, SESSION, "PRS1_BND", QObject::tr("Breathing Not Detected"), diff --git a/oscar/SleepLib/machine.cpp b/oscar/SleepLib/machine.cpp index 10c65f33..3de4eca1 100644 --- a/oscar/SleepLib/machine.cpp +++ b/oscar/SleepLib/machine.cpp @@ -120,7 +120,7 @@ Machine::Machine(Profile *_profile, MachineID id) : profile(_profile) Machine::~Machine() { saveSessionInfo(); - qDebug() << "Destroy Machine" << info.loadername << hex << m_id; + //qDebug() << "Destroy Machine" << info.loadername << hex << m_id; } Session *Machine::SessionExists(SessionID session) { diff --git a/oscar/SleepLib/profiles.cpp b/oscar/SleepLib/profiles.cpp index ee2fa3c9..c58bd182 100644 --- a/oscar/SleepLib/profiles.cpp +++ b/oscar/SleepLib/profiles.cpp @@ -36,7 +36,7 @@ Preferences *p_pref; Preferences *p_layout; Profile *p_profile; -Profile::Profile(QString path) +Profile::Profile(QString path, bool open) : is_first_day(true), m_opened(false) { @@ -58,7 +58,9 @@ Profile::Profile(QString path) p_filename = p_path + p_name + STR_ext_XML; m_machlist.clear(); - Open(p_filename); + if (open) { + Open(p_filename); + } Set(STR_GEN_DataFolder, QString("{home}/Profiles/{UserName}")); @@ -80,13 +82,17 @@ Profile::Profile(QString path) session = new SessionSettings(this); general = new UserSettings(this); - OpenMachines(); - m_opened=true; + if (open) { + OpenMachines(); + m_opened=true; + } } Profile::~Profile() { - removeLock(); + if (m_opened) { + removeLock(); + } delete user; delete doctor; diff --git a/oscar/SleepLib/profiles.h b/oscar/SleepLib/profiles.h index 6a8bc432..8ba9ed74 100644 --- a/oscar/SleepLib/profiles.h +++ b/oscar/SleepLib/profiles.h @@ -43,8 +43,8 @@ class SessionSettings; class Profile : public Preferences { public: - //! \brief Constructor.. Does not open profile - Profile(QString path); + //! \brief Constructor.. Does not open profile in UI, but loads it from disk by default + Profile(QString path, bool open=true); virtual ~Profile(); diff --git a/oscar/SleepLib/schema.cpp b/oscar/SleepLib/schema.cpp index 17012815..c998a639 100644 --- a/oscar/SleepLib/schema.cpp +++ b/oscar/SleepLib/schema.cpp @@ -359,13 +359,22 @@ void init() } -void resetChannels() +void done() { - schema::channel.channels.clear(); schema::channel.names.clear(); + for (auto & c : schema::channel.channels.values()) { + delete c; + } + schema::channel.channels.clear(); schema::channel.groups.clear(); schema_initialized = false; +} + + +void resetChannels() +{ + done(); init(); QList list = GetLoaders(); diff --git a/oscar/SleepLib/schema.h b/oscar/SleepLib/schema.h index 5cacd9cf..8fe421b5 100644 --- a/oscar/SleepLib/schema.h +++ b/oscar/SleepLib/schema.h @@ -265,6 +265,7 @@ class ChannelList extern ChannelList channel; void init(); +void done(); } // namespace schema diff --git a/oscar/docs/channels.xml b/oscar/docs/channels.xml index 47ff3615..e6899dc0 100644 --- a/oscar/docs/channels.xml +++ b/oscar/docs/channels.xml @@ -11,9 +11,6 @@ Important: One id code per item, DO NOT CHANGE ID NUMBERS!!! - - - @@ -37,7 +34,8 @@ Important: One id code per item, DO NOT CHANGE ID NUMBERS!!! - + +