summaryrefslogtreecommitdiffstats
path: root/src/network/qsocketdevice.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/qsocketdevice.cpp')
-rw-r--r--src/network/qsocketdevice.cpp12
1 files changed, 6 insertions, 6 deletions
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 );