diff options
Diffstat (limited to 'doc/html/clientserver-example.html')
-rw-r--r-- | doc/html/clientserver-example.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/clientserver-example.html b/doc/html/clientserver-example.html index f5623b341..b66a1f1e4 100644 --- a/doc/html/clientserver-example.html +++ b/doc/html/clientserver-example.html @@ -92,14 +92,14 @@ public: } signals: - void logText( const <a href="ntqstring.html">TQString</a>& ); + void logText( const <a href="tqstring.html">TQString</a>& ); private slots: void readClient() { <a href="ntqtextstream.html">TQTextStream</a> ts( this ); while ( canReadLine() ) { -<a name="x787"></a> <a href="ntqstring.html">TQString</a> str = ts.<a href="ntqtextstream.html#readLine">readLine</a>(); +<a name="x787"></a> <a href="tqstring.html">TQString</a> str = ts.<a href="ntqtextstream.html#readLine">readLine</a>(); emit logText( tr("Read: '%1'\n").arg(str) ); ts << line << ": " << str << endl; @@ -159,7 +159,7 @@ public: { SimpleServer *server = new SimpleServer( this ); - <a href="ntqstring.html">TQString</a> itext = tr( + <a href="tqstring.html">TQString</a> itext = tr( "This is a small server example.\n" "Connect with the client now." ); @@ -182,8 +182,8 @@ private slots: void newConnect( ClientSocket *s ) { <a name="x786"></a> infoText-><a href="ntqtextedit.html#append">append</a>( tr("New connection\n") ); - connect( s, TQ_SIGNAL(logText(const <a href="ntqstring.html">TQString</a>&)), - infoText, TQ_SLOT(<a href="ntqtextedit.html#append">append</a>(const <a href="ntqstring.html">TQString</a>&)) ); + connect( s, TQ_SIGNAL(logText(const <a href="tqstring.html">TQString</a>&)), + infoText, TQ_SLOT(<a href="ntqtextedit.html#append">append</a>(const <a href="tqstring.html">TQString</a>&)) ); <a name="x785"></a> connect( s, TQ_SIGNAL(<a href="ntqsocket.html#connectionClosed">connectionClosed</a>()), TQ_SLOT(connectionClosed()) ); } @@ -237,7 +237,7 @@ class Client : public <a href="ntqvbox.html">TQVBox</a> { TQ_OBJECT public: - Client( const <a href="ntqstring.html">TQString</a> &host, TQ_UINT16 port ) + Client( const <a href="tqstring.html">TQString</a> &host, TQ_UINT16 port ) { // GUI layout infoText = new <a href="ntqtextview.html">TQTextView</a>( this ); |