mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Use UTC Session Times for ResMed SessionID's
This commit is contained in:
parent
f8c82c4944
commit
78fb368b60
@ -359,6 +359,8 @@ qint64 Day::total_time()
|
|||||||
bool b;
|
bool b;
|
||||||
int nest=0;
|
int nest=0;
|
||||||
qint64 total=0;
|
qint64 total=0;
|
||||||
|
// This is my implementation of a typical "brace counting" algorithm mentioned here:
|
||||||
|
// http://stackoverflow.com/questions/7468948/problem-calculating-overlapping-date-ranges
|
||||||
for (QMultiMap<qint64,bool>::iterator it=range.begin();it!=range.end();it++) {
|
for (QMultiMap<qint64,bool>::iterator it=range.begin();it!=range.end();it++) {
|
||||||
b=it.value();
|
b=it.value();
|
||||||
if (!b) {
|
if (!b) {
|
||||||
|
@ -569,6 +569,7 @@ int ResmedLoader::Open(QString & path,Profile *profile)
|
|||||||
|
|
||||||
// Take the filename's date, and
|
// Take the filename's date, and
|
||||||
date=QDateTime::fromString(datestr,"yyyyMMdd_HHmmss");
|
date=QDateTime::fromString(datestr,"yyyyMMdd_HHmmss");
|
||||||
|
date=date.toUTC();
|
||||||
|
|
||||||
// Skip file if dates invalid, the filename is clearly wrong..
|
// Skip file if dates invalid, the filename is clearly wrong..
|
||||||
if (!date.isValid())
|
if (!date.isValid())
|
||||||
|
Loading…
Reference in New Issue
Block a user