summaryrefslogtreecommitdiffstats
path: root/doc/html/i18n.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/i18n.html')
-rw-r--r--doc/html/i18n.html6
1 files changed, 3 insertions, 3 deletions
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.
<p> Strings that are in "programmer space" (such as <a href="tqobject.html">TQObject</a> names
and file format texts) need not use TQString; the traditional
-char* or the <a href="ntqcstring.html">TQCString</a> class will suffice.
+char* or the <a href="tqcstring.html">TQCString</a> class will suffice.
<p> You're unlikely to notice that you are using Unicode;
TQString, and <a href="qchar.html">TQChar</a> are just like easier versions of the crude
const char* and char from traditional C.
@@ -403,7 +403,7 @@ would be:
<a href="tqstring.html">TQString</a> string = ...; // some Unicode text
<a href="tqtextcodec.html">TQTextCodec</a>* codec = TQTextCodec::<a href="tqtextcodec.html#codecForName">codecForName</a>( "ISO 8859-5" );
- <a href="ntqcstring.html">TQCString</a> encoded_string = codec-&gt;<a href="tqtextcodec.html#fromUnicode">fromUnicode</a>( string );
+ <a href="tqcstring.html">TQCString</a> encoded_string = codec-&gt;<a href="tqtextcodec.html#fromUnicode">fromUnicode</a>( string );
...; // use encoded_string in 8-bit operations
</pre>
@@ -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:
<p> <pre>
- <a href="ntqcstring.html">TQCString</a> encoded_string = ...; // Some ISO 8859-5 encoded text.
+ <a href="tqcstring.html">TQCString</a> encoded_string = ...; // Some ISO 8859-5 encoded text.
<a href="tqtextcodec.html">TQTextCodec</a>* codec = TQTextCodec::<a href="tqtextcodec.html#codecForName">codecForName</a>("ISO 8859-5");
<a href="tqstring.html">TQString</a> string = codec-&gt;<a href="tqtextcodec.html#toUnicode">toUnicode</a>(encoded_string);