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 c09cbb59..7be3accb 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 );