summaryrefslogtreecommitdiffstats
path: root/examples/network/remotecontrol/ipcserver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network/remotecontrol/ipcserver.cpp')
-rw-r--r--examples/network/remotecontrol/ipcserver.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/network/remotecontrol/ipcserver.cpp b/examples/network/remotecontrol/ipcserver.cpp
index f7f52ab48..e7cbc2c55 100644
--- a/examples/network/remotecontrol/ipcserver.cpp
+++ b/examples/network/remotecontrol/ipcserver.cpp
@@ -24,7 +24,7 @@ signals:
private slots:
void read()
{
- Q_ULONG bytesAvail = bytesAvailable();
+ TQ_ULONG bytesAvail = bytesAvailable();
for ( ;; ) {
if ( packetSize == 0 ) {
TQDataStream ds( this );
@@ -63,10 +63,10 @@ private slots:
}
private:
- Q_UINT32 packetSize;
+ TQ_UINT32 packetSize;
};
-IpcServer::IpcServer( Q_UINT16 port, TQObject *parent ) :
+IpcServer::IpcServer( TQ_UINT16 port, TQObject *parent ) :
TQServerSocket( 0x7f000001, port, 1, parent )
{
}