summaryrefslogtreecommitdiffstats
path: root/examples/network/networkprotocol
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network/networkprotocol')
-rw-r--r--examples/network/networkprotocol/main.cpp2
-rw-r--r--examples/network/networkprotocol/networkprotocol.doc2
-rw-r--r--examples/network/networkprotocol/nntp.cpp4
-rw-r--r--examples/network/networkprotocol/nntp.h4
-rw-r--r--examples/network/networkprotocol/view.cpp2
-rw-r--r--examples/network/networkprotocol/view.h2
6 files changed, 8 insertions, 8 deletions
diff --git a/examples/network/networkprotocol/main.cpp b/examples/network/networkprotocol/main.cpp
index db00b6a98..76f8fce5a 100644
--- a/examples/network/networkprotocol/main.cpp
+++ b/examples/network/networkprotocol/main.cpp
@@ -8,7 +8,7 @@
*****************************************************************************/
#include <ntqapplication.h>
-#include <ntqnetwork.h>
+#include <tqnetwork.h>
#include "nntp.h"
#include "view.h"
diff --git a/examples/network/networkprotocol/networkprotocol.doc b/examples/network/networkprotocol/networkprotocol.doc
index ea0079767..95a8ea0d1 100644
--- a/examples/network/networkprotocol/networkprotocol.doc
+++ b/examples/network/networkprotocol/networkprotocol.doc
@@ -7,7 +7,7 @@
\title A simple NNTP implementation
- This example shows how to implement your own QNetworkProtocol. The
+ This example shows how to implement your own TQNetworkProtocol. The
protocol that was chosen for this example is NTTP. Please note that this
implementation is very simple since it is designed to be an example. It
should not be used as a real NNTP implemention.
diff --git a/examples/network/networkprotocol/nntp.cpp b/examples/network/networkprotocol/nntp.cpp
index 870c2c7f9..08c2c18c9 100644
--- a/examples/network/networkprotocol/nntp.cpp
+++ b/examples/network/networkprotocol/nntp.cpp
@@ -8,9 +8,9 @@
*****************************************************************************/
#include "nntp.h"
-#include <ntqurlinfo.h>
+#include <tqurlinfo.h>
#include <stdlib.h>
-#include <ntqurloperator.h>
+#include <tqurloperator.h>
#include <tqstringlist.h>
#include <tqregexp.h>
diff --git a/examples/network/networkprotocol/nntp.h b/examples/network/networkprotocol/nntp.h
index c09a3ea4a..cca84a0f2 100644
--- a/examples/network/networkprotocol/nntp.h
+++ b/examples/network/networkprotocol/nntp.h
@@ -10,8 +10,8 @@
#ifndef NNTP_H
#define NNTP_H
-#include <ntqsocket.h>
-#include <ntqnetworkprotocol.h>
+#include <tqsocket.h>
+#include <tqnetworkprotocol.h>
class Nntp : public TQNetworkProtocol
{
diff --git a/examples/network/networkprotocol/view.cpp b/examples/network/networkprotocol/view.cpp
index 070b8a7cd..15084c5c5 100644
--- a/examples/network/networkprotocol/view.cpp
+++ b/examples/network/networkprotocol/view.cpp
@@ -12,7 +12,7 @@
#include <ntqlabel.h>
#include <ntqpushbutton.h>
#include <ntqmultilineedit.h>
-#include <ntqfiledialog.h>
+#include <tqfiledialog.h>
View::View()
: TQVBox()
diff --git a/examples/network/networkprotocol/view.h b/examples/network/networkprotocol/view.h
index 8fc9a43a9..9a5583ff8 100644
--- a/examples/network/networkprotocol/view.h
+++ b/examples/network/networkprotocol/view.h
@@ -12,7 +12,7 @@
#include <ntqvbox.h>
#include <tqcstring.h>
-#include <ntqurloperator.h>
+#include <tqurloperator.h>
class TQMultiLineEdit;