mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-09-17 08:50:24 +02:00
2019-12-03 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdcatch(1) that caused DOW flags to fail to be updated correctly on the event list after making a change.
This commit is contained in:
parent
eb1a64f5b4
commit
cf13fe1503
@ -19284,3 +19284,6 @@
|
||||
'Edit Cart Event' dialog in rdcatch(1).
|
||||
2019-12-02 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Incremented the package version to 3.2.0int1.
|
||||
2019-12-03 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a bug in rdcatch(1) that caused DOW flags to fail to be
|
||||
updated correctly on the event list after making a change.
|
||||
|
@ -1636,24 +1636,45 @@ void MainWidget::RefreshRow(RDSqlQuery *q,RDListViewItem *item)
|
||||
if(RDBool(q->value(7).toString())) { // Sun
|
||||
item->setText(7,tr("Su"));
|
||||
}
|
||||
else {
|
||||
item->setText(7,"");
|
||||
}
|
||||
if(RDBool(q->value(8).toString())) { // Mon
|
||||
item->setText(8,tr("Mo"));
|
||||
}
|
||||
else {
|
||||
item->setText(8,"");
|
||||
}
|
||||
if(RDBool(q->value(9).toString())) { // Tue
|
||||
item->setText(9,tr("Tu"));
|
||||
}
|
||||
else {
|
||||
item->setText(9,"");
|
||||
}
|
||||
if(RDBool(q->value(10).toString())) { // Wed
|
||||
item->setText(10,tr("We"));
|
||||
}
|
||||
else {
|
||||
item->setText(10,"");
|
||||
}
|
||||
if(RDBool(q->value(11).toString())) { // Thu
|
||||
item->setText(11,tr("Th"));
|
||||
}
|
||||
else {
|
||||
item->setText(11,"");
|
||||
}
|
||||
if(RDBool(q->value(12).toString())) { // Fri
|
||||
item->setText(12,tr("Fr"));
|
||||
}
|
||||
else {
|
||||
item->setText(12,"");
|
||||
}
|
||||
if(RDBool(q->value(13).toString())) { // Sat
|
||||
item->setText(13,tr("Sa"));
|
||||
}
|
||||
else {
|
||||
item->setText(13,"");
|
||||
}
|
||||
switch((RDRecording::Type)q->value(26).toInt()) {
|
||||
case RDRecording::Recording:
|
||||
case RDRecording::Playout:
|
||||
|
Loading…
x
Reference in New Issue
Block a user