From 41bb408dde90e755b07cd2ab8a9bdec7548c84b0 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 28 Feb 2012 22:31:39 -0600 Subject: Automated conversion from qt3 --- src/tools/qbitarray.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/tools/qbitarray.cpp') 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; } -- cgit v1.2.1