From 78fb368b60cf24d2f1584e1b5a65cba08cf350fa Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Wed, 25 Jan 2012 02:45:18 +1000 Subject: [PATCH] Use UTC Session Times for ResMed SessionID's --- SleepLib/day.cpp | 2 ++ SleepLib/loader_plugins/resmed_loader.cpp | 1 + 2 files changed, 3 insertions(+) diff --git a/SleepLib/day.cpp b/SleepLib/day.cpp index f06ccb8b..d2194563 100644 --- a/SleepLib/day.cpp +++ b/SleepLib/day.cpp @@ -359,6 +359,8 @@ qint64 Day::total_time() bool b; int nest=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::iterator it=range.begin();it!=range.end();it++) { b=it.value(); if (!b) { diff --git a/SleepLib/loader_plugins/resmed_loader.cpp b/SleepLib/loader_plugins/resmed_loader.cpp index 0dcca176..2c4e6a9e 100644 --- a/SleepLib/loader_plugins/resmed_loader.cpp +++ b/SleepLib/loader_plugins/resmed_loader.cpp @@ -569,6 +569,7 @@ int ResmedLoader::Open(QString & path,Profile *profile) // Take the filename's date, and date=QDateTime::fromString(datestr,"yyyyMMdd_HHmmss"); + date=date.toUTC(); // Skip file if dates invalid, the filename is clearly wrong.. if (!date.isValid())