diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-20 11:46:59 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-04-02 16:50:04 +0900 |
commit | a1413410ddfec18d3ba95f7a844398ec2d8544c5 (patch) | |
tree | 11a6470833b1d43dd87233b7353ee82c485afccf /src/kvilib | |
parent | fa9080a8169fe09e360a9353aae9819093f12f71 (diff) | |
download | kvirc-a1413410ddfec18d3ba95f7a844398ec2d8544c5.tar.gz kvirc-a1413410ddfec18d3ba95f7a844398ec2d8544c5.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit f887a3ee8f51b158ffb32d88e1489a6f2e0a9dbb)
Diffstat (limited to 'src/kvilib')
-rw-r--r-- | src/kvilib/core/kvi_string.h | 3 | ||||
-rw-r--r-- | src/kvilib/net/kvi_http.h | 2 | ||||
-rw-r--r-- | src/kvilib/system/kvi_locale.cpp | 4 |
3 files changed, 4 insertions, 5 deletions
diff --git a/src/kvilib/core/kvi_string.h b/src/kvilib/core/kvi_string.h index b1d7a2e0..a42f6e22 100644 --- a/src/kvilib/core/kvi_string.h +++ b/src/kvilib/core/kvi_string.h @@ -144,8 +144,7 @@ public: // Carbon copy :)...fast KviStr(const KviStr &str); - // Compat with QT...<br> - // WARNING : With QT2.x it WILL loose UNICODE data.<br> + // Compat with TQt...<br> // Safe even if the TQString is null. KviStr(const TQString &str); diff --git a/src/kvilib/net/kvi_http.h b/src/kvilib/net/kvi_http.h index 39d71b3f..91784f4b 100644 --- a/src/kvilib/net/kvi_http.h +++ b/src/kvilib/net/kvi_http.h @@ -45,7 +45,7 @@ class KviHttpRequestThread; // // This class implements a HTTP protocol client. // It's able to send GET, POST and HEAD requests, -// download stuff to a file or to a qt TQ_SLOT(). +// download stuff to a file or to a tqt TQ_SLOT(). // class KVILIB_API KviHttpRequest : public TQObject, public KviHeapObject diff --git a/src/kvilib/system/kvi_locale.cpp b/src/kvilib/system/kvi_locale.cpp index b52fe447..6f083e89 100644 --- a/src/kvilib/system/kvi_locale.cpp +++ b/src/kvilib/system/kvi_locale.cpp @@ -1065,13 +1065,13 @@ KviTranslator::~KviTranslator() TQString KviTranslator::find(const char *context,const char * message) const { - // we ignore contexts for qt translations + // we ignore contexts for tqt translations return g_pMainCatalogue->translateToTQString(message); } TQTranslatorMessage KviTranslator::findMessage(const char * context,const char * sourceText,const char * comment) const { - // we ignore contexts for qt translations + // we ignore contexts for tqt translations return TQTranslatorMessage(context,sourceText,comment,g_pMainCatalogue->translateToTQString(sourceText)); } |