summaryrefslogtreecommitdiffstats
path: root/examples/network/infoprotocol/infourlclient/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network/infoprotocol/infourlclient/client.cpp')
-rw-r--r--examples/network/infoprotocol/infourlclient/client.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/network/infoprotocol/infourlclient/client.cpp b/examples/network/infoprotocol/infourlclient/client.cpp
index 992880dd..c3101639 100644
--- a/examples/network/infoprotocol/infourlclient/client.cpp
+++ b/examples/network/infoprotocol/infourlclient/client.cpp
@@ -21,10 +21,10 @@
ClientInfo::ClientInfo( TQWidget *parent, const char *name ) :
ClientInfoBase( parent, name )
{
- connect( btnOpen, SIGNAL(clicked()), SLOT(downloadFile()) );
- connect( btnQuit, SIGNAL(clicked()), tqApp, SLOT(quit()) );
- connect( &op, SIGNAL( data( const TQByteArray &, TQNetworkOperation * ) ),
- this, SLOT( newData( const TQByteArray & ) ) );
+ connect( btnOpen, TQ_SIGNAL(clicked()), TQ_SLOT(downloadFile()) );
+ connect( btnQuit, TQ_SIGNAL(clicked()), tqApp, TQ_SLOT(quit()) );
+ connect( &op, TQ_SIGNAL( data( const TQByteArray &, TQNetworkOperation * ) ),
+ this, TQ_SLOT( newData( const TQByteArray & ) ) );
}
void ClientInfo::downloadFile()