summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqtextstream.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqtextstream.3qt')
-rw-r--r--doc/man/man3/tqtextstream.3qt10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/man/man3/tqtextstream.3qt b/doc/man/man3/tqtextstream.3qt
index a9b92b733..8a5bce36a 100644
--- a/doc/man/man3/tqtextstream.3qt
+++ b/doc/man/man3/tqtextstream.3qt
@@ -216,7 +216,7 @@ The TQTextStream class reads and writes text; it is not appropriate for dealing
.PP
By default, output of Unicode text (i.e. TQString) is done using the local 8-bit encoding. This can be changed using the setEncoding() method. For input, the TQTextStream will auto-detect standard Unicode "byte order marked" text files; otherwise the local 8-bit encoding is used.
.PP
-The TQIODevice is set in the constructor, or later using setDevice(). If the end of the input is reached atEnd() returns TRUE. Data can be read into variables of the appropriate type using the operator>>() overloads, or read in its entirety into a single string using read(), or read a line at a time using readLine(). Whitespace can be skipped over using skipWhiteSpace(). You can set flags for the stream using flags() or setf(). The stream also supports width(), precision() and fill(); use reset() to reset the defaults.
+The TQIODevice is set in the constructor, or later using setDevice(). If the end of the input is reached atEnd() returns true. Data can be read into variables of the appropriate type using the operator>>() overloads, or read in its entirety into a single string using read(), or read a line at a time using readLine(). Whitespace can be skipped over using skipWhiteSpace(). You can set flags for the stream using flags() or setf(). The stream also supports width(), precision() and fill(); use reset() to reset the defaults.
.PP
See also TQDataStream, Input/Output and Networking, and Text Related Classes.
.SS "Member Type Documentation"
@@ -319,7 +319,7 @@ Destroys the text stream.
.PP
The destructor does not affect the current IO device.
.SH "bool TQTextStream::atEnd () const"
-Returns TRUE if the IO device has reached the end position (end of the stream or file) or if there is no IO device set; otherwise returns FALSE.
+Returns true if the IO device has reached the end position (end of the stream or file) or if there is no IO device set; otherwise returns false.
.PP
See also TQIODevice::atEnd().
.PP
@@ -490,19 +490,19 @@ This is an overloaded member function, provided for convenience. It behaves esse
.PP
Reads a "word" from the stream into \fIs\fR and returns a reference to the stream.
.PP
-A word consists of characters for which isspace() returns FALSE.
+A word consists of characters for which isspace() returns false.
.SH "TQTextStream & TQTextStream::operator>> ( TQString & str )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Reads a "word" from the stream into \fIstr\fR and returns a reference to the stream.
.PP
-A word consists of characters for which isspace() returns FALSE.
+A word consists of characters for which isspace() returns false.
.SH "TQTextStream & TQTextStream::operator>> ( TQCString & str )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Reads a "word" from the stream into \fIstr\fR and returns a reference to the stream.
.PP
-A word consists of characters for which isspace() returns FALSE.
+A word consists of characters for which isspace() returns false.
.SH "int TQTextStream::precision () const"
Returns the precision. The default value is 6.
.SH "int TQTextStream::precision ( int p )"