From 5c0f17bf31d8a6b58ba203c184d581011b44f3a3 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Mon, 24 Sep 2007 18:56:14 +0000 Subject: [PATCH] - Fixed a problem in log text color (introduced very recently) --- src/downloadingTorrents.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/downloadingTorrents.cpp b/src/downloadingTorrents.cpp index e447da139..f1a0c0f22 100644 --- a/src/downloadingTorrents.cpp +++ b/src/downloadingTorrents.cpp @@ -190,7 +190,8 @@ void DownloadingTorrents::setInfoBar(QString info, QColor color) { infoBar->clear(); nbLines = 1; } - infoBar->append(QString::fromUtf8("")+ QTime::currentTime().toString(QString::fromUtf8("hh:mm:ss")) + QString::fromUtf8(" - ") + info + QString::fromUtf8("")); + qDebug("Color is %s", color.name().toUtf8().data()); + infoBar->append(QString::fromUtf8("")+ QTime::currentTime().toString(QString::fromUtf8("hh:mm:ss")) + QString::fromUtf8(" - ") + info + QString::fromUtf8("")); } void DownloadingTorrents::addFastResumeRejectedAlert(QString name) {