summaryrefslogtreecommitdiffstats
path: root/doc/html/unicode.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/unicode.html')
-rw-r--r--doc/html/unicode.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/unicode.html b/doc/html/unicode.html
index 5de9d2d4..075e0486 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.