From 6dec101d43dcbd4195c47d54bd388db1a8d7230e Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 17 Jun 2012 17:28:28 -0500 Subject: Automated update from Qt3 --- src/tools/qiodevice.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/tools/qiodevice.cpp') diff --git a/src/tools/qiodevice.cpp b/src/tools/qiodevice.cpp index 6e584ec45..4f89ddea1 100644 --- a/src/tools/qiodevice.cpp +++ b/src/tools/qiodevice.cpp @@ -611,7 +611,7 @@ bool TQIODevice::atEnd() const /*! - \fn int TQIODevice::readBlock( char *data, Q_ULONG maxlen ) + \fn int TQIODevice::readBlock( char *data, TQ_ULONG maxlen ) Reads at most \a maxlen bytes from the I/O device into \a data and returns the number of bytes actually read. @@ -671,7 +671,7 @@ TQByteArray TQIODevice::readAll() } /*! - \fn int TQIODevice::writeBlock( const char *data, Q_ULONG len ) + \fn int TQIODevice::writeBlock( const char *data, TQ_ULONG len ) Writes \a len bytes from \a data to the I/O device and returns the number of bytes actually written. @@ -689,7 +689,7 @@ TQByteArray TQIODevice::readAll() This convenience function is the same as calling writeBlock( data.data(), data.size() ). */ -Q_LONG TQIODevice::writeBlock( const TQByteArray& data ) +TQ_LONG TQIODevice::writeBlock( const TQByteArray& data ) { return writeBlock( data.data(), data.size() ); } @@ -708,7 +708,7 @@ Q_LONG TQIODevice::writeBlock( const TQByteArray& data ) \sa readBlock(), TQTextStream::readLine() */ -Q_LONG TQIODevice::readLine( char *data, Q_ULONG maxlen ) +TQ_LONG TQIODevice::readLine( char *data, TQ_ULONG maxlen ) { if ( maxlen == 0 ) // application bug? return 0; -- cgit v1.2.1