summaryrefslogtreecommitdiffstats
path: root/examples/network
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network')
-rw-r--r--examples/network/archivesearch/main.cpp2
-rw-r--r--examples/network/clientserver/client/client.cpp4
-rw-r--r--examples/network/clientserver/server/server.cpp6
-rw-r--r--examples/network/httpd/httpd.cpp4
-rw-r--r--examples/network/infoprotocol/infoclient/client.cpp2
-rw-r--r--examples/network/infoprotocol/infoserver/server.cpp2
-rw-r--r--examples/network/infoprotocol/infourlclient/client.cpp2
-rw-r--r--examples/network/networkprotocol/nntp.cpp2
-rw-r--r--examples/network/remotecontrol/main.cpp2
-rw-r--r--examples/network/remotecontrol/remotectrl.ui4
10 files changed, 15 insertions, 15 deletions
diff --git a/examples/network/archivesearch/main.cpp b/examples/network/archivesearch/main.cpp
index c08a0003..8a8588a1 100644
--- a/examples/network/archivesearch/main.cpp
+++ b/examples/network/archivesearch/main.cpp
@@ -17,7 +17,7 @@ int main(int argc, char **argv)
ad.show();
TQObject::connect( &a, SIGNAL(lastWindowClosed()),
- &a, SLOT(tquit()) );
+ &a, SLOT(quit()) );
return a.exec();
}
diff --git a/examples/network/clientserver/client/client.cpp b/examples/network/clientserver/client/client.cpp
index d76b59a9..0155a4fa 100644
--- a/examples/network/clientserver/client/client.cpp
+++ b/examples/network/clientserver/client/client.cpp
@@ -30,11 +30,11 @@ public:
inputText = new TQLineEdit( hb );
TQPushButton *send = new TQPushButton( tr("Send") , hb );
TQPushButton *close = new TQPushButton( tr("Close connection") , this );
- TQPushButton *tquit = new TQPushButton( tr("Quit") , this );
+ TQPushButton *quit = new TQPushButton( tr("Quit") , this );
connect( send, SIGNAL(clicked()), SLOT(sendToServer()) );
connect( close, SIGNAL(clicked()), SLOT(closeConnection()) );
- connect( tquit, SIGNAL(clicked()), qApp, SLOT(tquit()) );
+ connect( quit, SIGNAL(clicked()), qApp, SLOT(quit()) );
// create the socket and connect various of its signals
socket = new TQSocket( this );
diff --git a/examples/network/clientserver/server/server.cpp b/examples/network/clientserver/server/server.cpp
index f80adda8..b6ac4479 100644
--- a/examples/network/clientserver/server/server.cpp
+++ b/examples/network/clientserver/server/server.cpp
@@ -118,12 +118,12 @@ public:
TQLabel *lb = new TQLabel( itext, this );
lb->setAlignment( AlignHCenter );
infoText = new TQTextView( this );
- TQPushButton *tquit = new TQPushButton( tr("Quit") , this );
+ TQPushButton *quit = new TQPushButton( tr("Quit") , this );
connect( server, SIGNAL(newConnect(ClientSocket*)),
SLOT(newConnect(ClientSocket*)) );
- connect( tquit, SIGNAL(clicked()), qApp,
- SLOT(tquit()) );
+ connect( quit, SIGNAL(clicked()), qApp,
+ SLOT(quit()) );
}
~ServerInfo()
diff --git a/examples/network/httpd/httpd.cpp b/examples/network/httpd/httpd.cpp
index fd42891b..f96fc455 100644
--- a/examples/network/httpd/httpd.cpp
+++ b/examples/network/httpd/httpd.cpp
@@ -98,12 +98,12 @@ public:
TQLabel *lb = new TQLabel( itext, this );
lb->setAlignment( AlignHCenter );
infoText = new TQTextView( this );
- TQPushButton *tquit = new TQPushButton( "tquit" , this );
+ TQPushButton *quit = new TQPushButton( "quit" , this );
connect( httpd, SIGNAL(newConnect()), SLOT(newConnect()) );
connect( httpd, SIGNAL(endConnect()), SLOT(endConnect()) );
connect( httpd, SIGNAL(wroteToClient()), SLOT(wroteToClient()) );
- connect( tquit, SIGNAL(pressed()), qApp, SLOT(tquit()) );
+ connect( quit, SIGNAL(pressed()), qApp, SLOT(quit()) );
}
~HttpInfo()
diff --git a/examples/network/infoprotocol/infoclient/client.cpp b/examples/network/infoprotocol/infoclient/client.cpp
index 24861ab5..a1852eb2 100644
--- a/examples/network/infoprotocol/infoclient/client.cpp
+++ b/examples/network/infoprotocol/infoclient/client.cpp
@@ -28,7 +28,7 @@ ClientInfo::ClientInfo( TQWidget *parent, const char *name ) :
connect( infoList, SIGNAL(selected(const TQString&)), SLOT(selectItem(const TQString&)) );
connect( btnConnect, SIGNAL(clicked()), SLOT(connectToServer()) );
connect( btnBack, SIGNAL(clicked()), SLOT(stepBack()) );
- connect( btnQuit, SIGNAL(clicked()), qApp, SLOT(tquit()) );
+ connect( btnQuit, SIGNAL(clicked()), qApp, SLOT(quit()) );
}
diff --git a/examples/network/infoprotocol/infoserver/server.cpp b/examples/network/infoprotocol/infoserver/server.cpp
index 4e5ef6d1..e85e6120 100644
--- a/examples/network/infoprotocol/infoserver/server.cpp
+++ b/examples/network/infoprotocol/infoserver/server.cpp
@@ -23,7 +23,7 @@ ServerInfo::ServerInfo( Q_UINT16 port, TQWidget *parent, const char *name ) :
{
SimpleServer *server = new SimpleServer( port, this, "simple server" );
connect( server, SIGNAL(newConnect()), SLOT(newConnect()) );
- connect( btnQuit, SIGNAL(clicked()), qApp, SLOT(tquit()) );
+ connect( btnQuit, SIGNAL(clicked()), qApp, SLOT(quit()) );
}
void ServerInfo::newConnect()
diff --git a/examples/network/infoprotocol/infourlclient/client.cpp b/examples/network/infoprotocol/infourlclient/client.cpp
index ba61d3b3..a1625e29 100644
--- a/examples/network/infoprotocol/infourlclient/client.cpp
+++ b/examples/network/infoprotocol/infourlclient/client.cpp
@@ -22,7 +22,7 @@ ClientInfo::ClientInfo( TQWidget *parent, const char *name ) :
ClientInfoBase( parent, name )
{
connect( btnOpen, SIGNAL(clicked()), SLOT(downloadFile()) );
- connect( btnQuit, SIGNAL(clicked()), qApp, SLOT(tquit()) );
+ connect( btnQuit, SIGNAL(clicked()), qApp, SLOT(quit()) );
connect( &op, SIGNAL( data( const TQByteArray &, TQNetworkOperation * ) ),
this, SLOT( newData( const TQByteArray & ) ) );
}
diff --git a/examples/network/networkprotocol/nntp.cpp b/examples/network/networkprotocol/nntp.cpp
index eccc1f97..6a4e1245 100644
--- a/examples/network/networkprotocol/nntp.cpp
+++ b/examples/network/networkprotocol/nntp.cpp
@@ -103,7 +103,7 @@ void Nntp::close()
{
// close the command socket
if ( commandSocket->isOpen() ) {
- commandSocket->writeBlock( "tquit\r\n", strlen( "tquit\r\n" ) );
+ commandSocket->writeBlock( "quit\r\n", strlen( "quit\r\n" ) );
commandSocket->close();
}
}
diff --git a/examples/network/remotecontrol/main.cpp b/examples/network/remotecontrol/main.cpp
index c153d02d..c617df23 100644
--- a/examples/network/remotecontrol/main.cpp
+++ b/examples/network/remotecontrol/main.cpp
@@ -6,6 +6,6 @@ int main( int argc, char **argv )
{
TQApplication a( argc, argv );
StartUp s;
- TQObject::connect( &a, SIGNAL(lastWindowClosed()), &a, SLOT(tquit()) );
+ TQObject::connect( &a, SIGNAL(lastWindowClosed()), &a, SLOT(quit()) );
return a.exec();
}
diff --git a/examples/network/remotecontrol/remotectrl.ui b/examples/network/remotecontrol/remotectrl.ui
index c28482ff..13a9fd79 100644
--- a/examples/network/remotecontrol/remotectrl.ui
+++ b/examples/network/remotecontrol/remotectrl.ui
@@ -123,7 +123,7 @@
</spacer>
<widget class="TQPushButton">
<property name="name">
- <cstring>tquitButton</cstring>
+ <cstring>quitButton</cstring>
</property>
<property name="text">
<string>&amp;Quit</string>
@@ -135,7 +135,7 @@
</widget>
<connections>
<connection>
- <sender>tquitButton</sender>
+ <sender>quitButton</sender>
<signal>clicked()</signal>
<receiver>RemoteCtrl</receiver>
<slot>close()</slot>