From 9aaa2e9c60099ca5cff3c63913adc5b0fbf960f6 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Mon, 16 Oct 2006 19:43:27 +0000 Subject: [PATCH] - Fixed log in Qt 4.2 --- src/GUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI.cpp b/src/GUI.cpp index 86cc8fc75..362266d40 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -273,7 +273,7 @@ void GUI::setInfoBar(const QString& info, const QString& color){ infoBar->clear(); nbLines = 1; } - infoBar->append(""+ QTime::currentTime().toString("hh:mm:ss") + " - " + info + "
"); + infoBar->append(""+ QTime::currentTime().toString("hh:mm:ss") + " - " + info + ""); } // Buggy with Qt 4.1.2 : should try with another version