diff options
Diffstat (limited to 'src/tools/qbitarray.cpp')
-rw-r--r-- | src/tools/qbitarray.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tools/qbitarray.cpp b/src/tools/qbitarray.cpp index 111583c..bdbeaa2 100644 --- a/src/tools/qbitarray.cpp +++ b/src/tools/qbitarray.cpp @@ -296,7 +296,7 @@ bool QBitArray::testBit( uint index ) const { #if defined(QT_CHECK_RANGE) if ( index >= size() ) { - tqWarning( "QBitArray::testBit: Index %d out of range", index ); + qWarning( "QBitArray::testBit: Index %d out of range", index ); return FALSE; } #endif @@ -315,7 +315,7 @@ void QBitArray::setBit( uint index ) { #if defined(QT_CHECK_RANGE) if ( index >= size() ) { - tqWarning( "QBitArray::setBit: Index %d out of range", index ); + qWarning( "QBitArray::setBit: Index %d out of range", index ); return; } #endif @@ -348,7 +348,7 @@ void QBitArray::clearBit( uint index ) { #if defined(QT_CHECK_RANGE) if ( index >= size() ) { - tqWarning( "QBitArray::clearBit: Index %d out of range", index ); + qWarning( "QBitArray::clearBit: Index %d out of range", index ); return; } #endif @@ -368,7 +368,7 @@ bool QBitArray::toggleBit( uint index ) { #if defined(QT_CHECK_RANGE) if ( index >= size() ) { - tqWarning( "QBitArray::toggleBit: Index %d out of range", index ); + qWarning( "QBitArray::toggleBit: Index %d out of range", index ); return FALSE; } #endif @@ -653,7 +653,7 @@ QDataStream &operator>>( QDataStream &s, QBitArray &a ) s >> len; // read size of array if ( !a.resize( (uint)len ) ) { // resize array #if defined(QT_CHECK_NULL) - tqWarning( "QDataStream: Not enough memory to read QBitArray" ); + qWarning( "QDataStream: Not enough memory to read QBitArray" ); #endif len = 0; } |