diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:59 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:59 -0600 |
commit | 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch) | |
tree | df1e10cc7504665622d096f9ba80dc9e56f3afb8 /src/network/qsocketdevice.cpp | |
parent | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff) | |
download | qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip |
Undo prior accidental commit
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 ); |