summaryrefslogtreecommitdiffstats
path: root/kget/logwindow.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:59:34 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:59:34 -0600
commit83677e35509b4dafac63b76995652bdf3b49f209 (patch)
tree591f1dc22278addb439726c42896376b17bb42bd /kget/logwindow.cpp
parent808e453c56036211f57482ed847d54aca01bba68 (diff)
downloadtdenetwork-83677e35509b4dafac63b76995652bdf3b49f209.tar.gz
tdenetwork-83677e35509b4dafac63b76995652bdf3b49f209.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 808e453c56036211f57482ed847d54aca01bba68.
Diffstat (limited to 'kget/logwindow.cpp')
-rw-r--r--kget/logwindow.cpp6
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;