summaryrefslogtreecommitdiffstats
path: root/src/tools/qfile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/qfile.cpp')
-rw-r--r--src/tools/qfile.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tools/qfile.cpp b/src/tools/qfile.cpp
index eee25683..47f77b5e 100644
--- a/src/tools/qfile.cpp
+++ b/src/tools/qfile.cpp
@@ -150,7 +150,7 @@ extern bool qt_file_access( const TQString& fn, int t );
*/
/*!
- \fn Q_LONG TQFile::writeBlock( const TQByteArray& data )
+ \fn TQ_LONG TQFile::writeBlock( const TQByteArray& data )
\overload
*/
@@ -366,7 +366,7 @@ bool TQFile::atEnd() const
\sa readBlock(), TQTextStream::readLine()
*/
-Q_LONG TQFile::readLine( char *p, Q_ULONG maxlen )
+TQ_LONG TQFile::readLine( char *p, TQ_ULONG maxlen )
{
if ( maxlen == 0 ) // application bug?
return 0;
@@ -381,7 +381,7 @@ Q_LONG TQFile::readLine( char *p, Q_ULONG maxlen )
return -1;
}
#endif
- Q_LONG nread; // number of bytes read
+ TQ_LONG nread; // number of bytes read
if ( isRaw() ) { // raw file
nread = TQIODevice::readLine( p, maxlen );
} else { // buffered file
@@ -419,10 +419,10 @@ Q_LONG TQFile::readLine( char *p, Q_ULONG maxlen )
\sa readBlock(), TQTextStream::readLine()
*/
-Q_LONG TQFile::readLine( TQString& s, Q_ULONG maxlen )
+TQ_LONG TQFile::readLine( TQString& s, TQ_ULONG maxlen )
{
TQByteArray ba(maxlen);
- Q_LONG l = readLine(ba.data(),maxlen);
+ TQ_LONG l = readLine(ba.data(),maxlen);
if ( l >= 0 ) {
ba.truncate(l);
s = TQString(ba);