summaryrefslogtreecommitdiffstats
path: root/doc/html/clientserver-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/clientserver-example.html')
-rw-r--r--doc/html/clientserver-example.html12
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>&amp; );
+ void logText( const <a href="tqstring.html">TQString</a>&amp; );
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 &lt;&lt; line &lt;&lt; ": " &lt;&lt; str &lt;&lt; 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-&gt;<a href="ntqtextedit.html#append">append</a>( tr("New connection\n") );
- connect( s, TQ_SIGNAL(logText(const <a href="ntqstring.html">TQString</a>&amp;)),
- infoText, TQ_SLOT(<a href="ntqtextedit.html#append">append</a>(const <a href="ntqstring.html">TQString</a>&amp;)) );
+ connect( s, TQ_SIGNAL(logText(const <a href="tqstring.html">TQString</a>&amp;)),
+ infoText, TQ_SLOT(<a href="ntqtextedit.html#append">append</a>(const <a href="tqstring.html">TQString</a>&amp;)) );
<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> &amp;host, TQ_UINT16 port )
+ Client( const <a href="tqstring.html">TQString</a> &amp;host, TQ_UINT16 port )
{
// GUI layout
infoText = new <a href="ntqtextview.html">TQTextView</a>( this );