summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqmemarray.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-10 18:56:16 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-10 18:56:16 +0900
commit252a2ec8b0f0f9cf20c947737087b24a8185b588 (patch)
treeb48be8863db3bc1c223ac270a258b5c1124cb0e3 /doc/man/man3/tqmemarray.3qt
parent87d29563e3ccdeb7fea0197e262e667ef323ff9c (diff)
downloadtqt3-252a2ec8b0f0f9cf20c947737087b24a8185b588.tar.gz
tqt3-252a2ec8b0f0f9cf20c947737087b24a8185b588.zip
Rename IO and network class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqmemarray.3qt')
-rw-r--r--doc/man/man3/tqmemarray.3qt18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/man/man3/tqmemarray.3qt b/doc/man/man3/tqmemarray.3qt
index da21cdc40..27b4f7cbb 100644
--- a/doc/man/man3/tqmemarray.3qt
+++ b/doc/man/man3/tqmemarray.3qt
@@ -144,10 +144,10 @@ Inherited by TQByteArray and QPointArray.
.BI "TQ_UINT16 \fBqChecksum\fR ( const char * data, uint len )"
.br
.ti -1c
-.BI "QDataStream & \fBoperator<<\fR ( QDataStream & s, const TQByteArray & a )"
+.BI "TQDataStream & \fBoperator<<\fR ( TQDataStream & s, const TQByteArray & a )"
.br
.ti -1c
-.BI "QDataStream & \fBoperator>>\fR ( QDataStream & s, TQByteArray & a )"
+.BI "TQDataStream & \fBoperator>>\fR ( TQDataStream & s, TQByteArray & a )"
.br
.in -1c
.SH DESCRIPTION
@@ -362,7 +362,7 @@ The array is a null array if data() == 0 (null pointer).
See also isNull().
.PP
Examples:
-.)l fileiconview/qfileiconview.cpp and network/networkprotocol/nntp.cpp.
+.)l fileiconview/tqfileiconview.cpp and network/networkprotocol/nntp.cpp.
.SH "void TQMemArray::detach ()\fC [virtual]\fR"
Detaches this array from shared array data; i.e. it makes a private, deep copy of the data.
.PP
@@ -454,7 +454,7 @@ New elements are not initialized.
.PP
See also size().
.PP
-Example: fileiconview/qfileiconview.cpp.
+Example: fileiconview/tqfileiconview.cpp.
.SH "bool TQMemArray::resize ( uint size )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
@@ -482,7 +482,7 @@ Example I (intended use):
.br
a.setRawData( bindata, sizeof(bindata) ); // a points to bindata
.br
- QDataStream s( a, IO_ReadOnly ); // open on a's data
+ TQDataStream s( a, IO_ReadOnly ); // open on a's data
.br
s >> <something>; // read raw bindata
.br
@@ -532,14 +532,14 @@ Equivalent to resize(\fIpos\fR).
.PP
See also resize().
.SH RELATED FUNCTION DOCUMENTATION
-.SH "QDataStream & operator<< ( QDataStream & s, const TQByteArray & a )"
+.SH "TQDataStream & operator<< ( TQDataStream & s, const TQByteArray & a )"
Writes byte array \fIa\fR to the stream \fIs\fR and returns a reference to the stream.
.PP
-See also Format of the QDataStream operators.
-.SH "QDataStream & operator>> ( QDataStream & s, TQByteArray & a )"
+See also Format of the TQDataStream operators.
+.SH "TQDataStream & operator>> ( TQDataStream & s, TQByteArray & a )"
Reads a byte array into \fIa\fR from the stream \fIs\fR and returns a reference to the stream.
.PP
-See also Format of the QDataStream operators.
+See also Format of the TQDataStream operators.
.SH "TQ_UINT16 tqChecksum ( const char * data, uint len )"
Returns the CRC-16 checksum of \fIlen\fR bytes starting at \fIdata\fR.
.PP