From a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 1 Mar 2012 13:24:30 -0600 Subject: Rename additional global TQt functions --- src/network/qsocketdevice.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/network/qsocketdevice.cpp') diff --git a/src/network/qsocketdevice.cpp b/src/network/qsocketdevice.cpp index f298cff..5a5bfab 100644 --- a/src/network/qsocketdevice.cpp +++ b/src/network/qsocketdevice.cpp @@ -163,7 +163,7 @@ QSocketDevice::QSocketDevice( int socket, Type type ) d(new QSocketDevicePrivate(Unknown)) { #if defined(QSOCKETDEVICE_DEBUG) - qDebug( "QSocketDevice: Created QSocketDevice %p (socket %x, type %d)", + tqDebug( "QSocketDevice: Created QSocketDevice %p (socket %x, type %d)", this, socket, type ); #endif init(); @@ -186,7 +186,7 @@ QSocketDevice::QSocketDevice( Type type ) d(new QSocketDevicePrivate(IPv4)) { #if defined(QSOCKETDEVICE_DEBUG) - qDebug( "QSocketDevice: Created QSocketDevice object %p, type %d", + tqDebug( "QSocketDevice: Created QSocketDevice object %p, type %d", this, type ); #endif init(); @@ -215,7 +215,7 @@ QSocketDevice::QSocketDevice( Type type, Protocol protocol, int ) d(new QSocketDevicePrivate(protocol)) { #if defined(QSOCKETDEVICE_DEBUG) - qDebug( "QSocketDevice: Created QSocketDevice object %p, type %d", + tqDebug( "QSocketDevice: Created QSocketDevice object %p, type %d", this, type ); #endif init(); @@ -231,7 +231,7 @@ QSocketDevice::~QSocketDevice() delete d; d = 0; #if defined(QSOCKETDEVICE_DEBUG) - qDebug( "QSocketDevice: Destroyed QSocketDevice %p", this ); + tqDebug( "QSocketDevice: Destroyed QSocketDevice %p", this ); #endif } @@ -308,7 +308,7 @@ void QSocketDevice::setSocket( int socket, Type type ) if ( fd != -1 ) // close any open socket close(); #if defined(QSOCKETDEVICE_DEBUG) - qDebug( "QSocketDevice::setSocket: socket %x, type %d", socket, type ); + tqDebug( "QSocketDevice::setSocket: socket %x, type %d", socket, type ); #endif t = type; fd = socket; @@ -335,7 +335,7 @@ bool QSocketDevice::open( int mode ) if ( isOpen() || !isValid() ) return FALSE; #if defined(QSOCKETDEVICE_DEBUG) - qDebug( "QSocketDevice::open: mode %x", mode ); + tqDebug( "QSocketDevice::open: mode %x", mode ); #endif setMode( mode & IO_ReadWrite ); setState( IO_Open ); -- cgit v1.2.3