diff --git a/Graphs/gSummaryChart.cpp b/Graphs/gSummaryChart.cpp index 0c0b3932..cb1719d7 100644 --- a/Graphs/gSummaryChart.cpp +++ b/Graphs/gSummaryChart.cpp @@ -555,7 +555,7 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height) QString formatTime(EventDataType v, bool show_seconds=false, bool duration=false,bool show_12hr=false) { - int h=int(v+12); + int h=int(v); if (!duration) { h%=24; @@ -567,7 +567,7 @@ QString formatTime(EventDataType v, bool show_seconds=false, bool duration=false char pm[3]={"am"}; if (show_12hr) { - h>=12 ? pm[0]='p' : pm[0]='a'; // yes, inverted.. + h>=12 ? pm[0]='p' : pm[0]='a'; h %= 12; if (h==0) h=12; diff --git a/Graphs/gYAxis.cpp b/Graphs/gYAxis.cpp index d8b12c0a..37f52990 100644 --- a/Graphs/gYAxis.cpp +++ b/Graphs/gYAxis.cpp @@ -255,14 +255,15 @@ gYAxisTime::~gYAxisTime() const QString gYAxisTime::Format(EventDataType v, int dp) { - int h=int(v+12) % 24; + int h=int(v) % 24; int m=int(v*60) % 60; int s=int(v*3600) % 60; char pm[3]={"am"}; if (show_12hr) { - h>=12 ? pm[0]='a' : pm[0]='p'; + + h>=12 ? pm[0]='p' : pm[0]='a'; h %= 12; if (h==0) h=12; } else { diff --git a/daily.cpp b/daily.cpp index 7f85d8af..552f713e 100644 --- a/daily.cpp +++ b/daily.cpp @@ -832,7 +832,7 @@ void Daily::Load(QDate date) } */ //} - html+="
"; + html+="

"; QDateTime fd,ld; bool corrupted_waveform=false; QString tooltip; @@ -849,7 +849,7 @@ void Daily::Load(QDate date) QHash::iterator i=(*s)->settings.find("BrokenWaveform"); tooltip=cpap->machine->GetClass()+" CPAP "+QString().sprintf("%2ih %2im %2is",h,m,s1); if ((i!=(*s)->settings.end()) && i.value().toBool()) corrupted_waveform=true; - tmp.sprintf(("").toLatin1(),(*s)->session(),(*s)->session()); + tmp.sprintf(("").toLatin1(),(*s)->session(),(*s)->session()); html+=tmp; } //if (oxi) html+=""; @@ -871,7 +871,7 @@ void Daily::Load(QDate date) html+=tmp; } } - html+="
%08i"+fd.date().toString(Qt::SystemLocaleShortDate)+""+fd.toString("HH:mm ")+""+ld.toString("HH:mm")+"
%08i"+fd.date().toString(Qt::SystemLocaleShortDate)+""+fd.toString("HH:mm ")+""+ld.toString("HH:mm")+"

"; + html+=""; if (corrupted_waveform) { html+="
One or more waveform record for this session had faulty source data. Some waveform overlay points may not match up correctly.
"; }