diff options
author | Timothy Pearson <[email protected]> | 2012-02-28 22:31:39 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-28 22:31:39 -0600 |
commit | 41bb408dde90e755b07cd2ab8a9bdec7548c84b0 (patch) | |
tree | 6d4d5407c000add30aa78630e009c0e5d633e440 /src/network/qsocketdevice.cpp | |
parent | 1740cd279522c060e738bbbffacab83355d2b794 (diff) | |
download | tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.tar.gz tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.zip |
Automated conversion from qt3
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 c09cbb59a..7be3accb1 100644 --- a/src/network/qsocketdevice.cpp +++ b/src/network/qsocketdevice.cpp @@ -163,7 +163,7 @@ TQSocketDevice::TQSocketDevice( int socket, Type type ) d(new TQSocketDevicePrivate(Unknown)) { #if defined(TQSOCKETDEVICE_DEBUG) - qDebug( "TQSocketDevice: Created TQSocketDevice %p (socket %x, type %d)", + tqDebug( "TQSocketDevice: Created TQSocketDevice %p (socket %x, type %d)", this, socket, type ); #endif init(); @@ -186,7 +186,7 @@ TQSocketDevice::TQSocketDevice( Type type ) d(new TQSocketDevicePrivate(IPv4)) { #if defined(TQSOCKETDEVICE_DEBUG) - qDebug( "TQSocketDevice: Created TQSocketDevice object %p, type %d", + tqDebug( "TQSocketDevice: Created TQSocketDevice object %p, type %d", this, type ); #endif init(); @@ -215,7 +215,7 @@ TQSocketDevice::TQSocketDevice( Type type, Protocol protocol, int ) d(new TQSocketDevicePrivate(protocol)) { #if defined(TQSOCKETDEVICE_DEBUG) - qDebug( "TQSocketDevice: Created TQSocketDevice object %p, type %d", + tqDebug( "TQSocketDevice: Created TQSocketDevice object %p, type %d", this, type ); #endif init(); @@ -231,7 +231,7 @@ TQSocketDevice::~TQSocketDevice() delete d; d = 0; #if defined(TQSOCKETDEVICE_DEBUG) - qDebug( "TQSocketDevice: Destroyed TQSocketDevice %p", this ); + tqDebug( "TQSocketDevice: Destroyed TQSocketDevice %p", this ); #endif } @@ -308,7 +308,7 @@ void TQSocketDevice::setSocket( int socket, Type type ) if ( fd != -1 ) // close any open socket close(); #if defined(TQSOCKETDEVICE_DEBUG) - qDebug( "TQSocketDevice::setSocket: socket %x, type %d", socket, type ); + tqDebug( "TQSocketDevice::setSocket: socket %x, type %d", socket, type ); #endif t = type; fd = socket; @@ -335,7 +335,7 @@ bool TQSocketDevice::open( int mode ) if ( isOpen() || !isValid() ) return FALSE; #if defined(TQSOCKETDEVICE_DEBUG) - qDebug( "TQSocketDevice::open: mode %x", mode ); + tqDebug( "TQSocketDevice::open: mode %x", mode ); #endif setMode( mode & IO_ReadWrite ); setState( IO_Open ); |