mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-17 08:01:13 +02:00
2022-09-18 Fred Gleason <fredg@paravelsystems.com>
* Removed debugging printf() statements from 'rdcatch/recordlistmodel.cpp'. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -23333,3 +23333,6 @@
|
|||||||
2022-09-18 Fred Gleason <fredg@paravelsystems.com>
|
2022-09-18 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Fixed a regression in rdcatch(1) that caused the current status
|
* Fixed a regression in rdcatch(1) that caused the current status
|
||||||
of events to fail to be indicated properly at startup.
|
of events to fail to be indicated properly at startup.
|
||||||
|
2022-09-18 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Removed debugging printf() statements from
|
||||||
|
'rdcatch/recordlistmodel.cpp'.
|
||||||
|
@@ -208,10 +208,8 @@ QVariant RecordListModel::data(const QModelIndex &index,int role) const
|
|||||||
|
|
||||||
case Qt::BackgroundRole:
|
case Qt::BackgroundRole:
|
||||||
if(d_is_nexts.at(row)) {
|
if(d_is_nexts.at(row)) {
|
||||||
printf("NEXT %d: %s\n",row,QColor(EVENT_NEXT_COLOR).name().toUtf8().constData());
|
|
||||||
return QColor(EVENT_NEXT_COLOR);
|
return QColor(EVENT_NEXT_COLOR);
|
||||||
}
|
}
|
||||||
printf("DEFAULT %d: %s\n",row,d_back_colors.at(row).value<QColor>().name().toUtf8().constData());
|
|
||||||
return d_back_colors.at(row);
|
return d_back_colors.at(row);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
Reference in New Issue
Block a user