2022-10-20 Fred Gleason <fredg@paravelsystems.com>

* Modified the start time display string to use 'H' and 'S' to
	distinguish hard and soft start times.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2022-10-20 20:35:42 -04:00
parent 505360007a
commit f7a1342f69
7 changed files with 43 additions and 28 deletions

View File

@@ -209,7 +209,12 @@ void ListReports::GenerateLogReport(QString *report)
// Time
//
if(logline->timeType()==RDLogLine::Hard) {
*report+="T";
if(logline->graceTime()<0) {
*report+="S";
}
else {
*report+="H";
}
}
else {
*report+=" ";