mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-17 08:01:13 +02:00
2021-04-26 Fred Gleason <fredg@paravelsystems.com>
* Fixed regressions caused by changes in behavior in the null constructor of 'QTime' between Qt4 and Qt5. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -608,7 +608,7 @@ void RecordListModel::updateRow(int row,RDSqlQuery *q)
|
||||
","+q->value(4).toTime().addMSecs(q->value(31).toInt()).
|
||||
toString("hh:mm:ss")+","+
|
||||
QString().sprintf("%d:%d,",q->value(32).toInt(),q->value(33).toInt())+
|
||||
QTime().addMSecs(q->value(34).toUInt()).toString("mm:ss");
|
||||
QTime(0,0,0).addMSecs(q->value(34).toUInt()).toString("mm:ss");
|
||||
break;
|
||||
}
|
||||
switch((RDRecording::EndType)q->value(35).toUInt()) {
|
||||
|
Reference in New Issue
Block a user