diff options
Diffstat (limited to 'src/network/qsocketdevice.cpp')
-rw-r--r-- | src/network/qsocketdevice.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/network/qsocketdevice.cpp b/src/network/qsocketdevice.cpp index 5a5bfab..f298cff 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) - tqDebug( "QSocketDevice: Created QSocketDevice %p (socket %x, type %d)", + qDebug( "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) - tqDebug( "QSocketDevice: Created QSocketDevice object %p, type %d", + qDebug( "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) - tqDebug( "QSocketDevice: Created QSocketDevice object %p, type %d", + qDebug( "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) - tqDebug( "QSocketDevice: Destroyed QSocketDevice %p", this ); + qDebug( "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) - tqDebug( "QSocketDevice::setSocket: socket %x, type %d", socket, type ); + qDebug( "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) - tqDebug( "QSocketDevice::open: mode %x", mode ); + qDebug( "QSocketDevice::open: mode %x", mode ); #endif setMode( mode & IO_ReadWrite ); setState( IO_Open ); |