diff options
Diffstat (limited to 'src/tools/qiodevice.cpp')
-rw-r--r-- | src/tools/qiodevice.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tools/qiodevice.cpp b/src/tools/qiodevice.cpp index 64c39915f..6e584ec45 100644 --- a/src/tools/qiodevice.cpp +++ b/src/tools/qiodevice.cpp @@ -431,7 +431,7 @@ void TQIODevice::setType( int t ) { #if defined(QT_CHECK_RANGE) if ( (t & IO_TypeMask) != t ) - qWarning( "TQIODevice::setType: Specified type out of range" ); + tqWarning( "TQIODevice::setType: Specified type out of range" ); #endif ioMode &= ~IO_TypeMask; // reset type bits ioMode |= t; @@ -447,7 +447,7 @@ void TQIODevice::setMode( int m ) { #if defined(QT_CHECK_RANGE) if ( (m & IO_ModeMask) != m ) - qWarning( "TQIODevice::setMode: Specified mode out of range" ); + tqWarning( "TQIODevice::setMode: Specified mode out of range" ); #endif ioMode &= ~IO_ModeMask; // reset mode bits ioMode |= m; @@ -463,7 +463,7 @@ void TQIODevice::setState( int s ) { #if defined(QT_CHECK_RANGE) if ( ((uint)s & IO_StateMask) != (uint)s ) - qWarning( "TQIODevice::setState: Specified state out of range" ); + tqWarning( "TQIODevice::setState: Specified state out of range" ); #endif ioMode &= ~IO_StateMask; // reset state bits ioMode |= (uint)s; @@ -569,9 +569,9 @@ bool TQIODevice::at( Offset pos ) #if defined(QT_CHECK_RANGE) if ( pos > size() ) { #if defined(QT_ABI_QT4) - qWarning( "TQIODevice::at: Index %lld out of range", pos ); + tqWarning( "TQIODevice::at: Index %lld out of range", pos ); #else - qWarning( "TQIODevice::at: Index %lu out of range", pos ); + tqWarning( "TQIODevice::at: Index %lu out of range", pos ); #endif return FALSE; } |