Daily page enable/disable oximeter session now works correctly.

Prevoiusly, disabling an oximeter session could cause bookmarks to be
disabled and/or OSCAR to crash. OSCAR was looking up the session for
the oximeter session and not noticing it got a Journal session instead.
This commit is contained in:
Guy Scharf 2020-11-04 21:12:05 -07:00
parent fac7803880
commit 5fb837ccb9
3 changed files with 14 additions and 2 deletions

View File

@ -98,6 +98,16 @@ Session *Day::find(SessionID sessid)
return nullptr;
}
Session *Day::find(SessionID sessid, MachineType mt)
{
for (auto & sess : sessions) {
if ((sess->session() == sessid) && (sess->s_machtype == mt)) {
return sess;
}
}
return nullptr;
}
void Day::addSession(Session *s)
{
if (s == nullptr) {

View File

@ -202,6 +202,8 @@ class Day
Session *find(SessionID sessid);
Session *find(SessionID sessid, MachineType mt);
//! \brief Returns the number of Sessions in this day record
int size() { return sessions.size(); }

View File

@ -560,7 +560,7 @@ void Daily::Link_clicked(const QUrl &url)
if (code=="togglecpapsession") { // Enable/Disable CPAP session
day=p_profile->GetDay(previous_date,MT_CPAP);
if (!day) return;
Session *sess=day->find(sid);
Session *sess=day->find(sid, MT_CPAP);
if (!sess)
return;
// int i=webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-webView->page()->mainFrame()->scrollBarValue(Qt::Vertical);
@ -571,7 +571,7 @@ void Daily::Link_clicked(const QUrl &url)
// webView->page()->mainFrame()->setScrollBarValue(Qt::Vertical, webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-i);
} else if (code=="toggleoxisession") { // Enable/Disable Oximetry session
day=p_profile->GetDay(previous_date,MT_OXIMETER);
Session *sess=day->find(sid);
Session *sess=day->find(sid, MT_OXIMETER);
if (!sess)
return;
// int i=webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-webView->page()->mainFrame()->scrollBarValue(Qt::Vertical);