summaryrefslogtreecommitdiffstats
path: root/examples/network/remotecontrol/startup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network/remotecontrol/startup.cpp')
-rw-r--r--examples/network/remotecontrol/startup.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/network/remotecontrol/startup.cpp b/examples/network/remotecontrol/startup.cpp
index 11b9d227..95e33e26 100644
--- a/examples/network/remotecontrol/startup.cpp
+++ b/examples/network/remotecontrol/startup.cpp
@@ -14,8 +14,8 @@ StartUp::StartUp()
mainDialog = 0;
socket = new TQSocket( this );
- connect( socket, SIGNAL(connected()), SLOT(startRemoteCtrl()) );
- connect( socket, SIGNAL(error(int)), SLOT(startMainDialog()) );
+ connect( socket, TQ_SIGNAL(connected()), TQ_SLOT(startRemoteCtrl()) );
+ connect( socket, TQ_SIGNAL(error(int)), TQ_SLOT(startMainDialog()) );
socket->connectToHost( "localhost", ipcPort );
}
@@ -38,8 +38,8 @@ void StartUp::startMainDialog()
IpcServer *server = new IpcServer( ipcPort, this );
- connect( server, SIGNAL(receivedText(const TQString&)),
- mainDialog->description, SLOT(setText(const TQString&)) );
- connect( server, SIGNAL(receivedPixmap(const TQPixmap&)),
- mainDialog->image, SLOT(setPixmap(const TQPixmap&)) );
+ connect( server, TQ_SIGNAL(receivedText(const TQString&)),
+ mainDialog->description, TQ_SLOT(setText(const TQString&)) );
+ connect( server, TQ_SIGNAL(receivedPixmap(const TQPixmap&)),
+ mainDialog->image, TQ_SLOT(setPixmap(const TQPixmap&)) );
}