summaryrefslogtreecommitdiffstats
path: root/plugins/webinterface
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-23 12:48:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-27 11:06:45 +0900
commitfd7a4086a1171a02553077f919d373048aa62327 (patch)
tree8390e5d3d52f3ae1180b40f512db31843c5b7a69 /plugins/webinterface
parent6c59a8b0157d3c11bcbb020a89e2efdf0e0c77fe (diff)
downloadktorrent-fd7a4086a1171a02553077f919d373048aa62327.tar.gz
ktorrent-fd7a4086a1171a02553077f919d373048aa62327.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'plugins/webinterface')
-rw-r--r--plugins/webinterface/php_handler.cpp2
-rw-r--r--plugins/webinterface/php_handler.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/webinterface/php_handler.cpp b/plugins/webinterface/php_handler.cpp
index cd8fd63..b8315ba 100644
--- a/plugins/webinterface/php_handler.cpp
+++ b/plugins/webinterface/php_handler.cpp
@@ -101,7 +101,7 @@ namespace kt
return launch(data);
}
- bool PhpHandler::containsDelimiters(const QString & str)
+ bool PhpHandler::containsDelimiters(const TQString & str)
{
return str.contains("\"") || str.contains("'");
}
diff --git a/plugins/webinterface/php_handler.h b/plugins/webinterface/php_handler.h
index e3cdb86..e817b51 100644
--- a/plugins/webinterface/php_handler.h
+++ b/plugins/webinterface/php_handler.h
@@ -48,7 +48,7 @@ namespace kt
void finished();
private:
- bool containsDelimiters(const QString & str);
+ bool containsDelimiters(const TQString & str);
private:
TQByteArray output;