summaryrefslogtreecommitdiffstats
path: root/doc/man
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man')
-rw-r--r--doc/man/man1/tqvfb.12
-rw-r--r--doc/man/man3/tqapplication.3qt4
-rw-r--r--doc/man/man3/tqstring.3qt4
3 files changed, 5 insertions, 5 deletions
diff --git a/doc/man/man1/tqvfb.1 b/doc/man/man1/tqvfb.1
index acf02e152..25d0ea556 100644
--- a/doc/man/man1/tqvfb.1
+++ b/doc/man/man1/tqvfb.1
@@ -59,7 +59,7 @@ master process via named pipes.
The virtual framebuffer is a development tool only. No
security issues have been considered in the virtual
framebuffer design. It should be avoided in a production
-environment; QT_NO_QWS_VFB should always be defined in
+environment; TQT_NO_QWS_VFB should always be defined in
production libraries.
.SH "AUTHORS"
.LP
diff --git a/doc/man/man3/tqapplication.3qt b/doc/man/man3/tqapplication.3qt
index 3f85a39fa..a01de9e42 100644
--- a/doc/man/man3/tqapplication.3qt
+++ b/doc/man/man3/tqapplication.3qt
@@ -509,7 +509,7 @@ This application object must be constructed before any paint devices (including
.PP
Note that \fIargc\fR and \fIargv\fR might be changed. TQt removes command line arguments that it recognizes. The modified \fIargc\fR and \fIargv\fR can also be accessed later with \fCqApp->argc()\fR and \fCqApp->argv()\fR. The documentation for argv() contains a detailed description of how to process command line arguments.
.PP
-Qt debugging options (not available if TQt was compiled with the QT_NO_DEBUG flag defined):
+Qt debugging options (not available if TQt was compiled with the TQT_NO_DEBUG flag defined):
.TP
-nograb, tells TQt that it must never grab the mouse or the keyboard.
.TP
@@ -1930,7 +1930,7 @@ In debug mode, this function calls tqFatal() with a message if the computer is t
.SH "void tqSystemWarning ( const char * msg, int code )"
Prints the message \fImsg\fR and uses \fIcode\fR to get a system specific error message. When \fIcode\fR is -1 (the default), the system's last error code will be used if possible. Use this method to handle failures in platform specific API calls.
.PP
-This function does nothing when TQt is built with \fCQT_NO_DEBUG\fR defined.
+This function does nothing when TQt is built with \fCTQT_NO_DEBUG\fR defined.
.SH "const char * tqVersion ()"
Returns the TQt version number as a string, for example, "2.3.0" or" 3.0.5".
.PP
diff --git a/doc/man/man3/tqstring.3qt b/doc/man/man3/tqstring.3qt
index 7097b922c..074d0d3c8 100644
--- a/doc/man/man3/tqstring.3qt
+++ b/doc/man/man3/tqstring.3qt
@@ -696,7 +696,7 @@ Constructs a string that is a deep copy of \fIstr\fR, interpreted as a classic C
.PP
If \fIstr\fR is 0, then a null string is created.
.PP
-This is a cast constructor, but it is perfectly safe: converting a Latin-1 \fCconst char *\fR to QString preserves all the information. You can disable this constructor by defining \fCQT_NO_CAST_ASCII\fR when you compile your applications. You can also make QString objects by using setLatin1(), fromLatin1(), fromLocal8Bit(), and fromUtf8(). Or whatever encoding is appropriate for the 8-bit data you have.
+This is a cast constructor, but it is perfectly safe: converting a Latin-1 \fCconst char *\fR to QString preserves all the information. You can disable this constructor by defining \fCTQT_NO_CAST_ASCII\fR when you compile your applications. You can also make QString objects by using setLatin1(), fromLatin1(), fromLocal8Bit(), and fromUtf8(). Or whatever encoding is appropriate for the 8-bit data you have.
.PP
See also isNull() and fromAscii().
.SH "QString::QString ( const std::string & str )"
@@ -1158,7 +1158,7 @@ Returns the Unicode string decoded from the first \fIlen\fR bytes of \fIascii\fR
.PP
If a codec has been set using QTextCodec::codecForCStrings(), it is used to convert the string from 8-bit characters to Unicode. Otherwise, this function does the same as fromLatin1().
.PP
-This is the same as the QString(const char*) constructor, but you can make that constructor invisible if you compile with the define \fCQT_NO_CAST_ASCII\fR, in which case you can explicitly create a QString from 8-bit ASCII text using this function.
+This is the same as the QString(const char*) constructor, but you can make that constructor invisible if you compile with the define \fCTQT_NO_CAST_ASCII\fR, in which case you can explicitly create a QString from 8-bit ASCII text using this function.
.PP
.nf
.br