From a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 1 Mar 2012 13:24:30 -0600 Subject: Rename additional global TQt functions --- src/tools/qdatastream.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/tools/qdatastream.cpp') diff --git a/src/tools/qdatastream.cpp b/src/tools/qdatastream.cpp index dfdc20e..d0cd70a 100644 --- a/src/tools/qdatastream.cpp +++ b/src/tools/qdatastream.cpp @@ -219,7 +219,7 @@ #if defined(QT_CHECK_STATE) #undef CHECK_STREAM_PRECOND #define CHECK_STREAM_PRECOND if ( !dev ) { \ - qWarning( "QDataStream: No device" ); \ + tqWarning( "QDataStream: No device" ); \ return *this; } #else #define CHECK_STREAM_PRECOND @@ -248,7 +248,7 @@ static const int DefaultStreamVersion = 6; QDataStream::QDataStream() { if ( systemWordSize == 0 ) // get system features - qSysInfo( &systemWordSize, &systemBigEndian ); + tqSysInfo( &systemWordSize, &systemBigEndian ); dev = 0; // no device set owndev = FALSE; byteorder = BigEndian; // default byte order @@ -272,7 +272,7 @@ QDataStream::QDataStream() QDataStream::QDataStream( QIODevice *d ) { if ( systemWordSize == 0 ) // get system features - qSysInfo( &systemWordSize, &systemBigEndian ); + tqSysInfo( &systemWordSize, &systemBigEndian ); dev = d; // set device owndev = FALSE; byteorder = BigEndian; // default byte order @@ -303,7 +303,7 @@ QDataStream::QDataStream( QIODevice *d ) QDataStream::QDataStream( QByteArray a, int mode ) { if ( systemWordSize == 0 ) // get system features - qSysInfo( &systemWordSize, &systemBigEndian ); + tqSysInfo( &systemWordSize, &systemBigEndian ); dev = new QBuffer( a ); // create device ((QBuffer *)dev)->open( mode ); // open device owndev = TRUE; -- cgit v1.2.3