diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:24:30 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:24:30 -0600 |
commit | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (patch) | |
tree | 3910055c634e2ca44eacd2c892118634df9b3597 /src/tools/qgarray.cpp | |
parent | b0b53cc84f215df9b9bcce77253a6b7a9d300986 (diff) | |
download | qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.tar.gz qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.zip |
Rename additional global TQt functions
Diffstat (limited to 'src/tools/qgarray.cpp')
-rw-r--r-- | src/tools/qgarray.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tools/qgarray.cpp b/src/tools/qgarray.cpp index 8a27510..c110462 100644 --- a/src/tools/qgarray.cpp +++ b/src/tools/qgarray.cpp @@ -138,7 +138,7 @@ QGArray::QGArray( int size ) { if ( size < 0 ) { #if defined(QT_CHECK_RANGE) - qWarning( "QGArray: Cannot allocate array with negative length" ); + tqWarning( "QGArray: Cannot allocate array with negative length" ); #endif size = 0; } @@ -578,7 +578,7 @@ void QGArray::resetRawData( const char *d, uint len ) { if ( d != shd->data || len != shd->len ) { #if defined(QT_CHECK_STATE) - qWarning( "QGArray::resetRawData: Inconsistent arguments" ); + tqWarning( "QGArray::resetRawData: Inconsistent arguments" ); #endif return; } @@ -601,7 +601,7 @@ int QGArray::find( const char *d, uint index, uint sz ) const index *= sz; if ( index >= shd->len ) { #if defined(QT_CHECK_RANGE) - qWarning( "QGArray::find: Index %d out of range", index/sz ); + tqWarning( "QGArray::find: Index %d out of range", index/sz ); #endif return -1; } @@ -803,7 +803,7 @@ bool QGArray::setExpand( uint index, const char *d, uint sz ) void QGArray::msg_index( uint index ) { #if defined(QT_CHECK_RANGE) - qWarning( "QGArray::at: Absolute index %d out of range", index ); + tqWarning( "QGArray::at: Absolute index %d out of range", index ); #else Q_UNUSED( index ) #endif |