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:
Fred Gleason 2022-09-18 17:04:45 -04:00
parent bc3afb352a
commit aae5245ca4
2 changed files with 3 additions and 2 deletions

View File

@ -23333,3 +23333,6 @@
2022-09-18 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdcatch(1) that caused the current status
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'.

View File

@ -208,10 +208,8 @@ QVariant RecordListModel::data(const QModelIndex &index,int role) const
case Qt::BackgroundRole:
if(d_is_nexts.at(row)) {
printf("NEXT %d: %s\n",row,QColor(EVENT_NEXT_COLOR).name().toUtf8().constData());
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);
default: