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:49:11 +0900 |
commit | f887a3ee8f51b158ffb32d88e1489a6f2e0a9dbb (patch) | |
tree | 3e047d1a1fc6d4e3b55af254251f52723fb46455 /src/kvilib | |
parent | ab992aba703fea5fba22a7f7fc3044d9306277ca (diff) | |
download | kvirc-f887a3ee8f51b158ffb32d88e1489a6f2e0a9dbb.tar.gz kvirc-f887a3ee8f51b158ffb32d88e1489a6f2e0a9dbb.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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)); } |