diff options
Diffstat (limited to 'src/tools/qgarray.cpp')
-rw-r--r-- | src/tools/qgarray.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/tools/qgarray.cpp b/src/tools/qgarray.cpp index 8eba534ca..31e881790 100644 --- a/src/tools/qgarray.cpp +++ b/src/tools/qgarray.cpp @@ -138,7 +138,7 @@ TQGArray::TQGArray( int size ) { if ( size < 0 ) { #if defined(QT_CHECK_RANGE) - qWarning( "TQGArray: Cannot allocate array with negative length" ); + tqWarning( "TQGArray: Cannot allocate array with negative length" ); #endif size = 0; } @@ -578,7 +578,7 @@ void TQGArray::resetRawData( const char *d, uint len ) { if ( d != shd->data || len != shd->len ) { #if defined(QT_CHECK_STATE) - qWarning( "TQGArray::resetRawData: Inconsistent arguments" ); + tqWarning( "TQGArray::resetRawData: Inconsistent arguments" ); #endif return; } @@ -601,7 +601,7 @@ int TQGArray::find( const char *d, uint index, uint sz ) const index *= sz; if ( index >= shd->len ) { #if defined(QT_CHECK_RANGE) - qWarning( "TQGArray::find: Index %d out of range", index/sz ); + tqWarning( "TQGArray::find: Index %d out of range", index/sz ); #endif return -1; } @@ -734,8 +734,8 @@ void TQGArray::sort( uint sz ) return; #ifdef QT_THREAD_SUPPORT - TQMutexLocker locker( qt_global_mutexpool ? - qt_global_mutexpool->get( &cmp_item_size ) : 0 ); + TQMutexLocker locker( tqt_global_mutexpool ? + tqt_global_mutexpool->get( &cmp_item_size ) : 0 ); #endif // QT_THREAD_SUPPORT cmp_item_size = sz; @@ -753,8 +753,8 @@ int TQGArray::bsearch( const char *d, uint sz ) const return -1; #ifdef QT_THREAD_SUPPORT - TQMutexLocker locker( qt_global_mutexpool ? - qt_global_mutexpool->get( &cmp_item_size ) : 0 ); + TQMutexLocker locker( tqt_global_mutexpool ? + tqt_global_mutexpool->get( &cmp_item_size ) : 0 ); #endif // QT_THREAD_SUPPORT cmp_item_size = sz; @@ -803,7 +803,7 @@ bool TQGArray::setExpand( uint index, const char *d, uint sz ) void TQGArray::msg_index( uint index ) { #if defined(QT_CHECK_RANGE) - qWarning( "TQGArray::at: Absolute index %d out of range", index ); + tqWarning( "TQGArray::at: Absolute index %d out of range", index ); #else Q_UNUSED( index ) #endif |