summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial1-07.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tutorial1-07.html')
-rw-r--r--doc/html/tutorial1-07.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/tutorial1-07.html b/doc/html/tutorial1-07.html
index 0de193ae..69002881 100644
--- a/doc/html/tutorial1-07.html
+++ b/doc/html/tutorial1-07.html
@@ -57,9 +57,9 @@ Chapter 6; only the changes are noted here.
happens to be included more than once. If you don't use it already,
it is a very good habit to develop. The #ifndef should enclose <em>all</em> of the
header file.
-<p> <pre> #include &lt;<a href="qvbox-h.html">ntqvbox.h</a>&gt;
+<p> <pre> #include &lt;<a href="tqvbox-h.html">tqvbox.h</a>&gt;
</pre>
-<p> <a href="qvbox-h.html">ntqvbox.h</a> is included. LCDRange inherits <a href="ntqvbox.html">TQVBox</a>, and the header file
+<p> <a href="tqvbox-h.html">tqvbox.h</a> is included. LCDRange inherits <a href="tqvbox.html">TQVBox</a>, and the header file
of a parent class must always be included. We cheated a bit in the
previous chapters, and we let <a href="tqwidget-h.html">tqwidget.h</a> be included indirectly via
other header files such as <a href="tqpushbutton-h.html">tqpushbutton.h</a>.
@@ -73,7 +73,7 @@ file.
<p> This makes the compilation of big projects much faster, because when a
header file has changed, fewer files need to be recompiled. It can
often speed up big compilations by a factor of two or more.
-<p> <pre> class LCDRange : public <a href="ntqvbox.html">TQVBox</a>
+<p> <pre> class LCDRange : public <a href="tqvbox.html">TQVBox</a>
{
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
public: