diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-08 12:56:43 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-08 12:56:43 +0900 |
commit | 0cf411b09cf5d8970b873a338a69eae98d5ce5d8 (patch) | |
tree | 107cf55759cc3138bb1e0035b479bcd92127403a /doc/html/unicode.html | |
parent | e6077c30d14e9d662e8843c554db86c0d366d0b6 (diff) | |
download | tqt3-0cf411b09cf5d8970b873a338a69eae98d5ce5d8.tar.gz tqt3-0cf411b09cf5d8970b873a338a69eae98d5ce5d8.zip |
Rename text nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/unicode.html')
-rw-r--r-- | doc/html/unicode.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/unicode.html b/doc/html/unicode.html index 5de9d2d46..075e04862 100644 --- a/doc/html/unicode.html +++ b/doc/html/unicode.html @@ -63,7 +63,7 @@ update</a> and <a name="3"></a><p> In TQt, and in most applications that use TQt, most or all user-visible strings are stored using Unicode. TQt provides: <p> <ul> -<p> <li> Translation to/from legacy encodings for file I/O: see <a href="ntqtextcodec.html">TQTextCodec</a> and <a href="ntqtextstream.html">TQTextStream</a>. +<p> <li> Translation to/from legacy encodings for file I/O: see <a href="tqtextcodec.html">TQTextCodec</a> and <a href="tqtextstream.html">TQTextStream</a>. <li> Translation from Input Methods and 8-bit keyboard input. <li> Translation to legacy character sets for on-screen display. <li> A string class, <a href="tqstring.html">TQString</a>, that stores Unicode characters, with @@ -76,7 +76,7 @@ even on Windows platforms that do not support it natively. <p> </ul> <p> To fully benefit from Unicode, we recommend using <a href="tqstring.html">TQString</a> for storing all user-visible strings, and performing all text file I/O using -<a href="ntqtextstream.html">TQTextStream</a>. Use <a href="qkeyevent.html#text">TQKeyEvent::text</a>() for keyboard input in any custom +<a href="tqtextstream.html">TQTextStream</a>. Use <a href="qkeyevent.html#text">TQKeyEvent::text</a>() for keyboard input in any custom widgets you write; it does not make much difference for slow typists in Western Europe or North America, but for fast typists or people using special input methods using text() is beneficial. @@ -96,7 +96,7 @@ translation support, like this: <p> tr() (simplifying somewhat) maps from <tt>const char *</tt> to a Unicode string, and uses installable <a href="ntqtranslator.html">TQTranslator</a> objects to do the mapping. -<p> TQt provides a number of built-in <a href="ntqtextcodec.html">TQTextCodec</a> classes, that is, +<p> TQt provides a number of built-in <a href="tqtextcodec.html">TQTextCodec</a> classes, that is, classes that know how to translate between Unicode and legacy encodings to support programs that must talk to other programs or read/write files in legacy file formats. |