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 a374cc6ca..49074ad93 100644 --- a/src/tools/qbitarray.cpp +++ b/src/tools/qbitarray.cpp @@ -296,7 +296,7 @@ bool TQBitArray::testBit( uint index ) const { #if defined(QT_CHECK_RANGE) if ( index >= size() ) { - qWarning( "TQBitArray::testBit: Index %d out of range", index ); + tqWarning( "TQBitArray::testBit: Index %d out of range", index ); return FALSE; } #endif @@ -315,7 +315,7 @@ void TQBitArray::setBit( uint index ) { #if defined(QT_CHECK_RANGE) if ( index >= size() ) { - qWarning( "TQBitArray::setBit: Index %d out of range", index ); + tqWarning( "TQBitArray::setBit: Index %d out of range", index ); return; } #endif @@ -348,7 +348,7 @@ void TQBitArray::clearBit( uint index ) { #if defined(QT_CHECK_RANGE) if ( index >= size() ) { - qWarning( "TQBitArray::clearBit: Index %d out of range", index ); + tqWarning( "TQBitArray::clearBit: Index %d out of range", index ); return; } #endif @@ -368,7 +368,7 @@ bool TQBitArray::toggleBit( uint index ) { #if defined(QT_CHECK_RANGE) if ( index >= size() ) { - qWarning( "TQBitArray::toggleBit: Index %d out of range", index ); + tqWarning( "TQBitArray::toggleBit: Index %d out of range", index ); return FALSE; } #endif @@ -653,7 +653,7 @@ TQDataStream &operator>>( TQDataStream &s, TQBitArray &a ) s >> len; // read size of array if ( !a.resize( (uint)len ) ) { // resize array #if defined(QT_CHECK_NULL) - qWarning( "TQDataStream: Not enough memory to read TQBitArray" ); + tqWarning( "TQDataStream: Not enough memory to read TQBitArray" ); #endif len = 0; } |