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+="