summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqprocess.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqprocess.3qt')
-rw-r--r--doc/man/man3/tqprocess.3qt18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/man/man3/tqprocess.3qt b/doc/man/man3/tqprocess.3qt
index 43e99642c..160fdf5a9 100644
--- a/doc/man/man3/tqprocess.3qt
+++ b/doc/man/man3/tqprocess.3qt
@@ -299,11 +299,11 @@ Note that if you want to iterate over the list, you should iterate over a copy,
.PP
See also setArguments() and addArgument().
.SH "bool TQProcess::canReadLineStderr () const"
-Returns TRUE if it's possible to read an entire line of text from standard error at this time; otherwise returns FALSE.
+Returns true if it's possible to read an entire line of text from standard error at this time; otherwise returns false.
.PP
See also readLineStderr() and canReadLineStdout().
.SH "bool TQProcess::canReadLineStdout () const"
-Returns TRUE if it's possible to read an entire line of text from standard output at this time; otherwise returns FALSE.
+Returns true if it's possible to read an entire line of text from standard output at this time; otherwise returns false.
.PP
See also readLineStdout() and canReadLineStderr().
.SH "void TQProcess::clearArguments ()"
@@ -323,11 +323,11 @@ See also setCommunication().
.SH "int TQProcess::exitStatus () const"
Returns the exit status of the process or 0 if the process is still running. This function returns immediately and does not wait until the process is finished.
.PP
-If normalExit() is FALSE (e.g. if the program was killed or crashed), this function returns 0, so you should check the return value of normalExit() before relying on this value.
+If normalExit() is false (e.g. if the program was killed or crashed), this function returns 0, so you should check the return value of normalExit() before relying on this value.
.PP
See also normalExit() and processExited().
.SH "bool TQProcess::isRunning () const"
-Returns TRUE if the process is running; otherwise returns FALSE.
+Returns true if the process is running; otherwise returns false.
.PP
See also normalExit(), exitStatus(), and processExited().
.SH "void TQProcess::kill () const\fC [slot]\fR"
@@ -353,7 +353,7 @@ Runs the process and writes the data \fIbuf\fR to the process's standard input.
.PP
If \fIenv\fR is null, then the process is started with the same environment as the starting process. If \fIenv\fR is non-null, then the values in the string list are interpreted as environment setttings of the form \fCkey=value\fR and the process is started with these environment settings. For convenience, there is a small exception to this rule under Unix: if \fIenv\fR does not contain any settings for the environment variable \fCLD_LIBRARY_PATH\fR, then this variable is inherited from the starting process.
.PP
-Returns TRUE if the process could be started; otherwise returns FALSE.
+Returns true if the process could be started; otherwise returns false.
.PP
Note that you should not use the slots writeToStdin() and closeStdin() on processes started with launch(), since the result is not well-defined. If you need these slots, use start() instead.
.PP
@@ -375,7 +375,7 @@ This signal is especially useful if you want to know when you can safely delete
.PP
See also launch() and TQObject::deleteLater().
.SH "bool TQProcess::normalExit () const"
-Returns TRUE if the process has exited normally; otherwise returns FALSE. This implies that this function returns FALSE if the process is still running.
+Returns true if the process has exited normally; otherwise returns false. This implies that this function returns false if the process is still running.
.PP
See also isRunning(), exitStatus(), and processExited().
.SH "void TQProcess::processExited ()\fC [signal]\fR"
@@ -393,13 +393,13 @@ Under Windows it is a pointer to the \fCPROCESS_INFORMATION\fR struct, or 0 if n
.PP
Use of this function's return value is likely to be non-portable.
.SH "TQString TQProcess::readLineStderr ()\fC [virtual]\fR"
-Reads a line of text from standard error, excluding any trailing newline or carriage return characters and returns it. Returns TQString::null if canReadLineStderr() returns FALSE.
+Reads a line of text from standard error, excluding any trailing newline or carriage return characters and returns it. Returns TQString::null if canReadLineStderr() returns false.
.PP
By default, the text is interpreted to be in Latin-1 encoding. If you need other codecs, you can set a different codec with TQTextCodec::setCodecForCStrings().
.PP
See also canReadLineStderr(), readyReadStderr(), readStderr(), and readLineStdout().
.SH "TQString TQProcess::readLineStdout ()\fC [virtual]\fR"
-Reads a line of text from standard output, excluding any trailing newline or carriage return characters, and returns it. Returns TQString::null if canReadLineStdout() returns FALSE.
+Reads a line of text from standard output, excluding any trailing newline or carriage return characters, and returns it. Returns TQString::null if canReadLineStdout() returns false.
.PP
By default, the text is interpreted to be in Latin-1 encoding. If you need other codecs, you can set a different codec with TQTextCodec::setCodecForCStrings().
.PP
@@ -459,7 +459,7 @@ Tries to run a process for the command and arguments that were specified with se
.PP
If \fIenv\fR is null, then the process is started with the same environment as the starting process. If \fIenv\fR is non-null, then the values in the stringlist are interpreted as environment setttings of the form \fCkey=value\fR and the process is started in these environment settings. For convenience, there is a small exception to this rule: under Unix, if \fIenv\fR does not contain any settings for the environment variable \fCLD_LIBRARY_PATH\fR, then this variable is inherited from the starting process; under Windows the same applies for the environment variable \fCPATH\fR.
.PP
-Returns TRUE if the process could be started; otherwise returns FALSE.
+Returns true if the process could be started; otherwise returns false.
.PP
You can write data to the process's standard input with writeToStdin(). You can close standard input with closeStdin() and you can terminate the process with tryTerminate(), or with kill().
.PP