From fb401a891f1b426e9419c0cb16403df407138611 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 27 Dec 2023 19:25:43 +0900 Subject: Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT Signed-off-by: Michele Calgaro --- examples/network/remotecontrol/ipcserver.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'examples/network/remotecontrol/ipcserver.cpp') diff --git a/examples/network/remotecontrol/ipcserver.cpp b/examples/network/remotecontrol/ipcserver.cpp index e7cbc2c55..4bd7b6423 100644 --- a/examples/network/remotecontrol/ipcserver.cpp +++ b/examples/network/remotecontrol/ipcserver.cpp @@ -14,7 +14,7 @@ public: IpcSocket( TQObject *parent) : TQSocket( parent ) { packetSize = 0; - connect( this, SIGNAL(readyRead()), SLOT(read()) ); + connect( this, TQ_SIGNAL(readyRead()), TQ_SLOT(read()) ); } signals: @@ -75,10 +75,10 @@ void IpcServer::newConnection( int socket ) { IpcSocket *s = new IpcSocket( this ); s->setSocket( socket ); - connect( s, SIGNAL(receivedText(const TQString&)), - SIGNAL(receivedText(const TQString&)) ); - connect( s, SIGNAL(receivedPixmap(const TQPixmap&)), - SIGNAL(receivedPixmap(const TQPixmap&)) ); + connect( s, TQ_SIGNAL(receivedText(const TQString&)), + TQ_SIGNAL(receivedText(const TQString&)) ); + connect( s, TQ_SIGNAL(receivedPixmap(const TQPixmap&)), + TQ_SIGNAL(receivedPixmap(const TQPixmap&)) ); } #include "ipcserver.moc" -- cgit v1.2.3