From 87d29563e3ccdeb7fea0197e262e667ef323ff9c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 7 Jul 2024 14:56:09 +0900 Subject: Rename utility class nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/i18n.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/html/i18n.html') diff --git a/doc/html/i18n.html b/doc/html/i18n.html index c20c6c30a..630ce6bb7 100644 --- a/doc/html/i18n.html +++ b/doc/html/i18n.html @@ -170,7 +170,7 @@ functions that present text to the user take a TQString as a parameter, there is no char* to TQString conversion overhead.

Strings that are in "programmer space" (such as TQObject names and file format texts) need not use TQString; the traditional -char* or the TQCString class will suffice. +char* or the TQCString class will suffice.

You're unlikely to notice that you are using Unicode; TQString, and TQChar are just like easier versions of the crude const char* and char from traditional C. @@ -403,7 +403,7 @@ would be: TQString string = ...; // some Unicode text TQTextCodec* codec = TQTextCodec::codecForName( "ISO 8859-5" ); - TQCString encoded_string = codec->fromUnicode( string ); + TQCString encoded_string = codec->fromUnicode( string ); ...; // use encoded_string in 8-bit operations @@ -419,7 +419,7 @@ while looking like plain US-ASCII if the text is wholly US-ASCII. demonstrated by this conversion from ISO 8859-5 Cyrillic to Unicode conversion:

-    TQCString encoded_string = ...; // Some ISO 8859-5 encoded text.
+    TQCString encoded_string = ...; // Some ISO 8859-5 encoded text.
 
     TQTextCodec* codec = TQTextCodec::codecForName("ISO 8859-5");
     TQString string = codec->toUnicode(encoded_string);
-- 
cgit v1.2.3