12hr time fix. no 0:00pm

This commit is contained in:
Mark Watkins 2011-11-30 16:20:08 +10:00
parent 52bb03eb52
commit 90bae964ce
2 changed files with 3 additions and 0 deletions

View File

@ -498,6 +498,8 @@ QString formatTime(EventDataType v, bool show_seconds=false, bool duration=false
if (show_12hr) { if (show_12hr) {
h>=12 ? pm[0]='p' : pm[0]='a'; // yes, inverted.. h>=12 ? pm[0]='p' : pm[0]='a'; // yes, inverted..
h %= 12; h %= 12;
if (h==0) h=12;
} else { } else {
pm[0]=0; pm[0]=0;
} }

View File

@ -264,6 +264,7 @@ const QString gYAxisTime::Format(EventDataType v, int dp)
if (show_12hr) { if (show_12hr) {
h>=12 ? pm[0]='p' : pm[0]='a'; // yes, inverted.. h>=12 ? pm[0]='p' : pm[0]='a'; // yes, inverted..
h %= 12; h %= 12;
if (h==0) h=12;
} else { } else {
pm[0]=0; pm[0]=0;
} }