summaryrefslogtreecommitdiffstats
path: root/plugins
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-28 12:53:42 +0900
commit1ff3e4d87b48ffc0b0f9d894ca3a4821f53cdeec (patch)
tree5b46a10a765b9e220e7b2d8a9f58952d4d23f28d /plugins
parentee1c4683a05f7557375c3bab694a0a2e144d83fb (diff)
downloadktorrent-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.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;