summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqtextstream.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 14:56:09 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 14:56:09 +0900
commit87d29563e3ccdeb7fea0197e262e667ef323ff9c (patch)
tree2d674f204c5205ca577a782e1b50583afd563972 /doc/man/man3/tqtextstream.3qt
parent628b0bb74c3fc327efff8add9c73ada04b1cbea2 (diff)
downloadtqt-87d29563.tar.gz
tqt-87d29563.zip
Rename utility class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqtextstream.3qt')
-rw-r--r--doc/man/man3/tqtextstream.3qt16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/man/man3/tqtextstream.3qt b/doc/man/man3/tqtextstream.3qt
index f9373929c..c03c81006 100644
--- a/doc/man/man3/tqtextstream.3qt
+++ b/doc/man/man3/tqtextstream.3qt
@@ -42,7 +42,7 @@ Inherited by TQTextIStream and TQTextOStream.
.BI "TQTextStream ( TQString & str, int filemode ) \fI(obsolete)\fR"
.br
.ti -1c
-.BI "\fBTQTextStream\fR ( QByteArray a, int mode )"
+.BI "\fBTQTextStream\fR ( TQByteArray a, int mode )"
.br
.ti -1c
.BI "\fBTQTextStream\fR ( FILE * fh, int mode )"
@@ -102,7 +102,7 @@ Inherited by TQTextIStream and TQTextOStream.
.BI "TQTextStream & \fBoperator>>\fR ( TQString & str )"
.br
.ti -1c
-.BI "TQTextStream & \fBoperator>>\fR ( QCString & str )"
+.BI "TQTextStream & \fBoperator>>\fR ( TQCString & str )"
.br
.ti -1c
.BI "TQTextStream & \fBoperator<<\fR ( TQChar c )"
@@ -141,7 +141,7 @@ Inherited by TQTextIStream and TQTextOStream.
.BI "TQTextStream & \fBoperator<<\fR ( const TQString & s )"
.br
.ti -1c
-.BI "TQTextStream & \fBoperator<<\fR ( const QCString & s )"
+.BI "TQTextStream & \fBoperator<<\fR ( const TQCString & s )"
.br
.ti -1c
.BI "TQTextStream & \fBoperator<<\fR ( void * ptr )"
@@ -276,14 +276,14 @@ Note that because TQString is Unicode, you should not use readRawBytes() or writ
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP
This constructor is equivalent to the constructor taking a TQString* parameter.
-.SH "TQTextStream::TQTextStream ( QByteArray a, int mode )"
+.SH "TQTextStream::TQTextStream ( TQByteArray a, int mode )"
Constructs a text stream that operates on the byte array, \fIa\fR, through an internal QBuffer device. The \fImode\fR argument is passed to the device's open() function; see TQIODevice::mode().
.PP
Example:
.PP
.nf
.br
- QByteArray array;
+ TQByteArray array;
.br
TQTextStream ts( array, IO_WriteOnly );
.br
@@ -297,7 +297,7 @@ Same example, using a QBuffer:
.PP
.nf
.br
- QByteArray array;
+ TQByteArray array;
.br
QBuffer buf( array );
.br
@@ -435,7 +435,7 @@ The string \fIs\fR is assumed to be Latin1 encoded independent of the Encoding s
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Writes \fIs\fR to the stream and returns a reference to the stream.
-.SH "TQTextStream & TQTextStream::operator<< ( const QCString & s )"
+.SH "TQTextStream & TQTextStream::operator<< ( const TQCString & s )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Writes \fIs\fR to the stream and returns a reference to the stream.
@@ -497,7 +497,7 @@ This is an overloaded member function, provided for convenience. It behaves esse
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.
-.SH "TQTextStream & TQTextStream::operator>> ( QCString & str )"
+.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.