diff options
Diffstat (limited to 'examples/network/remotecontrol/remotectrlimpl.cpp')
-rw-r--r-- | examples/network/remotecontrol/remotectrlimpl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/network/remotecontrol/remotectrlimpl.cpp b/examples/network/remotecontrol/remotectrlimpl.cpp index ac1f01678..68e0a3c7a 100644 --- a/examples/network/remotecontrol/remotectrlimpl.cpp +++ b/examples/network/remotecontrol/remotectrlimpl.cpp @@ -10,9 +10,9 @@ RemoteCtrlImpl::RemoteCtrlImpl( TQSocket *s ) { socket = s; - connect( sImage, SIGNAL(clicked()), SLOT(sendImage()) ); - connect( sText, SIGNAL(clicked()), SLOT(sendText()) ); - connect( sPalette, SIGNAL(clicked()), SLOT(sendPalette()) ); + connect( sImage, TQ_SIGNAL(clicked()), TQ_SLOT(sendImage()) ); + connect( sText, TQ_SIGNAL(clicked()), TQ_SLOT(sendText()) ); + connect( sPalette, TQ_SIGNAL(clicked()), TQ_SLOT(sendPalette()) ); } void RemoteCtrlImpl::sendPacket( const TQVariant &v ) |