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 5a910bfbd..f408cfbeb 100644
--- a/doc/html/clientserver-example.html
+++ b/doc/html/clientserver-example.html
@@ -58,7 +58,7 @@ specified. You can send single lines to the server.
#include &lt;<a href="tqsocket-h.html">tqsocket.h</a>&gt;
#include &lt;<a href="tqserversocket-h.html">tqserversocket.h</a>&gt;
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
-#include &lt;<a href="qvbox-h.html">ntqvbox.h</a>&gt;
+#include &lt;<a href="tqvbox-h.html">tqvbox.h</a>&gt;
#include &lt;<a href="tqtextview-h.html">tqtextview.h</a>&gt;
#include &lt;<a href="tqlabel-h.html">tqlabel.h</a>&gt;
#include &lt;<a href="tqpushbutton-h.html">tqpushbutton.h</a>&gt;
@@ -151,7 +151,7 @@ signals:
The ServerInfo class provides a small GUI for the server. It also creates the
SimpleServer and as a result the server.
*/
-class ServerInfo : public <a href="ntqvbox.html">TQVBox</a>
+class ServerInfo : public <a href="tqvbox.html">TQVBox</a>
{
TQ_OBJECT
public:
@@ -224,8 +224,8 @@ int main( int argc, char** argv )
#include &lt;<a href="tqsocket-h.html">tqsocket.h</a>&gt;
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
-#include &lt;<a href="qvbox-h.html">ntqvbox.h</a>&gt;
-#include &lt;<a href="qhbox-h.html">ntqhbox.h</a>&gt;
+#include &lt;<a href="tqvbox-h.html">tqvbox.h</a>&gt;
+#include &lt;<a href="tqhbox-h.html">tqhbox.h</a>&gt;
#include &lt;<a href="tqtextview-h.html">tqtextview.h</a>&gt;
#include &lt;<a href="tqlineedit-h.html">tqlineedit.h</a>&gt;
#include &lt;<a href="tqlabel-h.html">tqlabel.h</a>&gt;
@@ -233,7 +233,7 @@ int main( int argc, char** argv )
#include &lt;<a href="tqtextstream-h.html">tqtextstream.h</a>&gt;
-class Client : public <a href="ntqvbox.html">TQVBox</a>
+class Client : public <a href="tqvbox.html">TQVBox</a>
{
TQ_OBJECT
public:
@@ -241,7 +241,7 @@ public:
{
// GUI layout
infoText = new <a href="tqtextview.html">TQTextView</a>( this );
- <a href="ntqhbox.html">TQHBox</a> *hb = new <a href="ntqhbox.html">TQHBox</a>( this );
+ <a href="tqhbox.html">TQHBox</a> *hb = new <a href="tqhbox.html">TQHBox</a>( this );
inputText = new <a href="tqlineedit.html">TQLineEdit</a>( hb );
<a href="tqpushbutton.html">TQPushButton</a> *send = new <a href="tqpushbutton.html">TQPushButton</a>( tr("Send") , hb );
<a href="tqpushbutton.html">TQPushButton</a> *close = new <a href="tqpushbutton.html">TQPushButton</a>( tr("Close connection") , this );