summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqstring.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 19:46:30 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 19:46:30 +0900
commit69d87202cb139ffe9e4b3ce92e434523b7b09b64 (patch)
tree7b133311a4d5e5394f2612dced305f815c04847b /doc/html/ntqstring.html
parente07baa10b7b8e7105e02a621efadac67216c61ed (diff)
downloadtqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.tar.gz
tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.zip
QT_NO_* -> TQT_NO_* renaming.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/ntqstring.html')
-rw-r--r--doc/html/ntqstring.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/ntqstring.html b/doc/html/ntqstring.html
index e8605bc65..06533f222 100644
--- a/doc/html/ntqstring.html
+++ b/doc/html/ntqstring.html
@@ -380,7 +380,7 @@ you change it using <a href="ntqtextcodec.html#setCodecForCStrings">TQTextCodec:
<p> If <em>str</em> is 0, then a null string is created.
<p> This is a cast constructor, but it is perfectly safe: converting a
Latin-1 <tt>const char *</tt> to TQString preserves all the information. You
-can disable this constructor by defining <tt>QT_NO_CAST_ASCII</tt> when
+can disable this constructor by defining <tt>TQT_NO_CAST_ASCII</tt> when
you compile your applications. You can also make TQString objects
by using <a href="#setLatin1">setLatin1</a>(), <a href="#fromLatin1">fromLatin1</a>(), <a href="#fromLocal8Bit">fromLocal8Bit</a>(), and
<a href="#fromUtf8">fromUtf8</a>(). Or whatever encoding is appropriate for the 8-bit data
@@ -928,7 +928,7 @@ it is used to convert the string from 8-bit characters to Unicode.
Otherwise, this function does the same as <a href="#fromLatin1">fromLatin1</a>().
<p> This is the same as the TQString(const char*) constructor, but you
can make that constructor invisible if you compile with the define
-<tt>QT_NO_CAST_ASCII</tt>, in which case you can explicitly create a
+<tt>TQT_NO_CAST_ASCII</tt>, in which case you can explicitly create a
TQString from 8-bit ASCII text using this function.
<p> <pre>
TQString str = TQString::<a href="#fromAscii">fromAscii</a>( "123456789", 5 );