summaryrefslogtreecommitdiffstats
path: root/src/tools/qgarray.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/qgarray.cpp')
-rw-r--r--src/tools/qgarray.cpp8
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