summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/qiodevice.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/qiodevice.3qt')
-rw-r--r--doc/man/man3/qiodevice.3qt18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/man/man3/qiodevice.3qt b/doc/man/man3/qiodevice.3qt
index 05a550fb..6d087c34 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(