mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
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:
parent
fac7803880
commit
5fb837ccb9
@ -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) {
|
||||
|
@ -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(); }
|
||||
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user