From aae5245ca47f062edcb9d053c62560810fdf1e82 Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Sun, 18 Sep 2022 17:04:45 -0400 Subject: [PATCH] 2022-09-18 Fred Gleason * Removed debugging printf() statements from 'rdcatch/recordlistmodel.cpp'. Signed-off-by: Fred Gleason --- ChangeLog | 3 +++ rdcatch/recordlistmodel.cpp | 2 -- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ce98dfd1..05be5680 100644 --- a/ChangeLog +++ b/ChangeLog @@ -23333,3 +23333,6 @@ 2022-09-18 Fred Gleason * 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 + * Removed debugging printf() statements from + 'rdcatch/recordlistmodel.cpp'. diff --git a/rdcatch/recordlistmodel.cpp b/rdcatch/recordlistmodel.cpp index 461b7c58..9d211da8 100644 --- a/rdcatch/recordlistmodel.cpp +++ b/rdcatch/recordlistmodel.cpp @@ -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().name().toUtf8().constData()); return d_back_colors.at(row); default: