diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-17 17:28:28 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-17 17:28:28 -0500 |
commit | 6dec101d43dcbd4195c47d54bd388db1a8d7230e (patch) | |
tree | 7c336cbed3a93807a34cd4df39b2f92a7d48a141 /doc/man/man3/qiodevice.3qt | |
parent | f27c2533f735d53c6b555f387c6390c0690cc246 (diff) | |
download | tqt3-6dec101d43dcbd4195c47d54bd388db1a8d7230e.tar.gz tqt3-6dec101d43dcbd4195c47d54bd388db1a8d7230e.zip |
Automated update from Qt3
Diffstat (limited to 'doc/man/man3/qiodevice.3qt')
-rw-r--r-- | doc/man/man3/qiodevice.3qt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/man/man3/qiodevice.3qt b/doc/man/man3/qiodevice.3qt index 05a550fb1..6d087c344 100644 --- a/doc/man/man3/qiodevice.3qt +++ b/doc/man/man3/qiodevice.3qt @@ -18,7 +18,7 @@ Inherited by QBuffer, QFile, QSocket, and QSocketDevice. .SS "Public Members" .in +1c .ti -1c -.BI "typedef Q_ULONG \fBOffset\fR" +.BI "typedef TQ_ULONG \fBOffset\fR" .br .ti -1c .BI "\fBQIODevice\fR ()" @@ -105,16 +105,16 @@ Inherited by QBuffer, QFile, QSocket, and QSocketDevice. .BI "bool \fBreset\fR ()" .br .ti -1c -.BI "virtual Q_LONG \fBreadBlock\fR ( char * data, Q_ULONG maxlen ) = 0" +.BI "virtual TQ_LONG \fBreadBlock\fR ( char * data, TQ_ULONG maxlen ) = 0" .br .ti -1c -.BI "virtual Q_LONG \fBwriteBlock\fR ( const char * data, Q_ULONG len ) = 0" +.BI "virtual TQ_LONG \fBwriteBlock\fR ( const char * data, TQ_ULONG len ) = 0" .br .ti -1c -.BI "virtual Q_LONG \fBreadLine\fR ( char * data, Q_ULONG maxlen )" +.BI "virtual TQ_LONG \fBreadLine\fR ( char * data, TQ_ULONG maxlen )" .br .ti -1c -.BI "Q_LONG \fBwriteBlock\fR ( const QByteArray & data )" +.BI "TQ_LONG \fBwriteBlock\fR ( const QByteArray & data )" .br .ti -1c .BI "virtual QByteArray \fBreadAll\fR ()" @@ -426,7 +426,7 @@ Example: grapher/grapher.cpp. Reimplemented in QFile and QSocket. .SH "QByteArray QIODevice::readAll ()\fC [virtual]\fR" This convenience function returns all of the remaining data in the device. -.SH "Q_LONG QIODevice::readBlock ( char * data, Q_ULONG maxlen )\fC [pure virtual]\fR" +.SH "TQ_LONG QIODevice::readBlock ( char * data, TQ_ULONG maxlen )\fC [pure virtual]\fR" Reads at most \fImaxlen\fR bytes from the I/O device into \fIdata\fR and returns the number of bytes actually read. .PP This function should return -1 if a fatal error occurs and should return 0 if there are no bytes to read. @@ -440,7 +440,7 @@ See also writeBlock(), isOpen(), and isReadable(). Example: distributor/distributor.ui.h. .PP Reimplemented in QSocket and QSocketDevice. -.SH "Q_LONG QIODevice::readLine ( char * data, Q_ULONG maxlen )\fC [virtual]\fR" +.SH "TQ_LONG QIODevice::readLine ( char * data, TQ_ULONG maxlen )\fC [virtual]\fR" Reads a line of text, (or up to \fImaxlen\fR bytes if a newline isn't encountered) plus a terminating '\0' into \fIdata\fR. If there is a newline at the end if the line, it is not stripped. .PP Returns the number of bytes read including the terminating '\0', or -1 if an error occurred. @@ -507,7 +507,7 @@ This virtual function must be reimplemented by all subclasses. See also getch() and putch(). .PP Reimplemented in QFile and QSocket. -.SH "Q_LONG QIODevice::writeBlock ( const char * data, Q_ULONG len )\fC [pure virtual]\fR" +.SH "TQ_LONG QIODevice::writeBlock ( const char * data, TQ_ULONG len )\fC [pure virtual]\fR" Writes \fIlen\fR bytes from \fIdata\fR to the I/O device and returns the number of bytes actually written. .PP This function should return -1 if a fatal error occurs. @@ -519,7 +519,7 @@ See also readBlock(). Example: distributor/distributor.ui.h. .PP Reimplemented in QBuffer, QSocket, and QSocketDevice. -.SH "Q_LONG QIODevice::writeBlock ( const QByteArray & data )" +.SH "TQ_LONG QIODevice::writeBlock ( const QByteArray & data )" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP This convenience function is the same as calling writeBlock( |