diff options
Diffstat (limited to 'kget/logwindow.cpp')
-rw-r--r-- | kget/logwindow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kget/logwindow.cpp b/kget/logwindow.cpp index 40045a42..30c6d486 100644 --- a/kget/logwindow.cpp +++ b/kget/logwindow.cpp @@ -25,7 +25,7 @@ ***************************************************************************/ -#include <layout.h> +#include <tqlayout.h> #include <tqlistview.h> #include <klocale.h> @@ -37,7 +37,7 @@ #include "logwindow.h" #include <kapplication.h> -#include <textedit.h> +#include <tqtextedit.h> // // Replace regular space with nbsp // TQString replaceSpaces(const TQString &str) { @@ -200,7 +200,7 @@ void LogWindow::logTransfer(uint id, const TQString & filename, const TQString & { TQString mixed_msg, single_msg, job_id; - job_id = TQString("Job[<font color=\"red\">%1</font>] : ").arg(id); + job_id = TQString("Job[<font color=\"red\">%1</font>] : ").tqarg(id); mixed_msg = "<font color=\"blue\">" + TQTime::currentTime().toString() + "</font> : " + job_id + message; single_msg = "<font color=\"blue\">" + TQTime::currentTime().toString() + "</font> : " + message; |