summaryrefslogtreecommitdiffstats
path: root/src/tools/qbitarray.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/qbitarray.cpp')
-rw-r--r--src/tools/qbitarray.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tools/qbitarray.cpp b/src/tools/qbitarray.cpp
index bdbeaa2..111583c 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() ) {
- qWarning( "QBitArray::testBit: Index %d out of range", index );
+ tqWarning( "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() ) {
- qWarning( "QBitArray::setBit: Index %d out of range", index );
+ tqWarning( "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() ) {
- qWarning( "QBitArray::clearBit: Index %d out of range", index );
+ tqWarning( "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() ) {
- qWarning( "QBitArray::toggleBit: Index %d out of range", index );
+ tqWarning( "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)
- qWarning( "QDataStream: Not enough memory to read QBitArray" );
+ tqWarning( "QDataStream: Not enough memory to read QBitArray" );
#endif
len = 0;
}