diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-27 19:25:43 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-27 19:25:43 +0900 |
commit | fb401a891f1b426e9419c0cb16403df407138611 (patch) | |
tree | 045b51949b3140039e37d898d8b0513016a86bea /examples/network/remotecontrol/ipcserver.cpp | |
parent | a9d178f1000475ba1727ffe123a2c54585488c01 (diff) | |
download | tqt3-fb401a891f1b426e9419c0cb16403df407138611.tar.gz tqt3-fb401a891f1b426e9419c0cb16403df407138611.zip |
Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'examples/network/remotecontrol/ipcserver.cpp')
-rw-r--r-- | examples/network/remotecontrol/ipcserver.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
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" |