mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-16 15:41:13 +02:00
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:
@@ -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+=" ";
|
||||
|
Reference in New Issue
Block a user