diff options
author | Timothy Pearson <[email protected]> | 2012-03-02 02:11:59 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-02 02:11:59 -0600 |
commit | 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch) | |
tree | df1e10cc7504665622d096f9ba80dc9e56f3afb8 /src/tools/qdatastream.cpp | |
parent | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff) | |
download | qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip |
Undo prior accidental commit
Diffstat (limited to 'src/tools/qdatastream.cpp')
-rw-r--r-- | src/tools/qdatastream.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tools/qdatastream.cpp b/src/tools/qdatastream.cpp index d0cd70a..dfdc20e 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 ) { \ - tqWarning( "QDataStream: No device" ); \ + qWarning( "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 - tqSysInfo( &systemWordSize, &systemBigEndian ); + qSysInfo( &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 - tqSysInfo( &systemWordSize, &systemBigEndian ); + qSysInfo( &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 - tqSysInfo( &systemWordSize, &systemBigEndian ); + qSysInfo( &systemWordSize, &systemBigEndian ); dev = new QBuffer( a ); // create device ((QBuffer *)dev)->open( mode ); // open device owndev = TRUE; |