diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:58:08 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:58:08 -0600 |
commit | 1de96857f5b0ed5d4a36e9486ffc8c7f8c802f98 (patch) | |
tree | e24fdc0514249de1233dd5dc07f09d07a35f4269 /kget/logwindow.cpp | |
parent | 089118c18533dfa3e6ce5065dbebdd4db94051f1 (diff) | |
download | tdenetwork-1de96857f5b0ed5d4a36e9486ffc8c7f8c802f98.tar.gz tdenetwork-1de96857f5b0ed5d4a36e9486ffc8c7f8c802f98.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'kget/logwindow.cpp')
-rw-r--r-- | kget/logwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kget/logwindow.cpp b/kget/logwindow.cpp index 30c6d486..09490134 100644 --- a/kget/logwindow.cpp +++ b/kget/logwindow.cpp @@ -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>] : ").tqarg(id); + job_id = TQString("Job[<font color=\"red\">%1</font>] : ").arg(id); mixed_msg = "<font color=\"blue\">" + TQTime::currentTime().toString() + "</font> : " + job_id + message; single_msg = "<font color=\"blue\">" + TQTime::currentTime().toString() + "</font> : " + message; |