summaryrefslogtreecommitdiffstats
path: root/src/tools/qiodevice.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:24:30 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:24:30 -0600
commita830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (patch)
tree3910055c634e2ca44eacd2c892118634df9b3597 /src/tools/qiodevice.cpp
parentb0b53cc84f215df9b9bcce77253a6b7a9d300986 (diff)
downloadqt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.tar.gz
qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.zip
Rename additional global TQt functions
Diffstat (limited to 'src/tools/qiodevice.cpp')
-rw-r--r--src/tools/qiodevice.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tools/qiodevice.cpp b/src/tools/qiodevice.cpp
index 236a02f..cc17c5c 100644
--- a/src/tools/qiodevice.cpp
+++ b/src/tools/qiodevice.cpp
@@ -431,7 +431,7 @@ void QIODevice::setType( int t )
{
#if defined(QT_CHECK_RANGE)
if ( (t & IO_TypeMask) != t )
- qWarning( "QIODevice::setType: Specified type out of range" );
+ tqWarning( "QIODevice::setType: Specified type out of range" );
#endif
ioMode &= ~IO_TypeMask; // reset type bits
ioMode |= t;
@@ -447,7 +447,7 @@ void QIODevice::setMode( int m )
{
#if defined(QT_CHECK_RANGE)
if ( (m & IO_ModeMask) != m )
- qWarning( "QIODevice::setMode: Specified mode out of range" );
+ tqWarning( "QIODevice::setMode: Specified mode out of range" );
#endif
ioMode &= ~IO_ModeMask; // reset mode bits
ioMode |= m;
@@ -463,7 +463,7 @@ void QIODevice::setState( int s )
{
#if defined(QT_CHECK_RANGE)
if ( ((uint)s & IO_StateMask) != (uint)s )
- qWarning( "QIODevice::setState: Specified state out of range" );
+ tqWarning( "QIODevice::setState: Specified state out of range" );
#endif
ioMode &= ~IO_StateMask; // reset state bits
ioMode |= (uint)s;
@@ -569,9 +569,9 @@ bool QIODevice::at( Offset pos )
#if defined(QT_CHECK_RANGE)
if ( pos > size() ) {
#if defined(QT_ABI_QT4)
- qWarning( "QIODevice::at: Index %lld out of range", pos );
+ tqWarning( "QIODevice::at: Index %lld out of range", pos );
#else
- qWarning( "QIODevice::at: Index %lu out of range", pos );
+ tqWarning( "QIODevice::at: Index %lu out of range", pos );
#endif
return FALSE;
}