diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-23 12:48:33 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-28 12:53:42 +0900 |
commit | 1ff3e4d87b48ffc0b0f9d894ca3a4821f53cdeec (patch) | |
tree | 5b46a10a765b9e220e7b2d8a9f58952d4d23f28d /plugins | |
parent | ee1c4683a05f7557375c3bab694a0a2e144d83fb (diff) | |
download | ktorrent-r14.1.1.tar.gz ktorrent-r14.1.1.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit fd7a4086a1171a02553077f919d373048aa62327)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/webinterface/php_handler.cpp | 2 | ||||
-rw-r--r-- | plugins/webinterface/php_handler.h | 2 |
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; |