Use UTC Session Times for ResMed SessionID's

This commit is contained in:
Mark Watkins 2012-01-25 02:45:18 +10:00
parent f8c82c4944
commit 78fb368b60
2 changed files with 3 additions and 0 deletions

View File

@ -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) {

View File

@ -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())