summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial2-03.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tutorial2-03.html')
-rw-r--r--doc/html/tutorial2-03.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/tutorial2-03.html b/doc/html/tutorial2-03.html
index 30eef5ceb..a44d777d9 100644
--- a/doc/html/tutorial2-03.html
+++ b/doc/html/tutorial2-03.html
@@ -62,10 +62,10 @@ of chart has a (relative) position stored in the <tt>m_propoints</tt> array.
toolkit, but it provides many non-GUI classes to support most aspects
of application programming. We use <a href="tqcolor-h.html">tqcolor.h</a> so that we can hold the
paint color and text color in the <tt>Element</tt> class. The use of <a href="tqnamespace-h.html">tqnamespace.h</a> is slightly obscure. Most TQt classes are derived from the
-<a href="ntqt.html">TQt</a> superclass which contains various
-enumerations. The <tt>Element</tt> class does not derive from <a href="ntqt.html">TQt</a>, so we need to include <a href="tqnamespace-h.html">tqnamespace.h</a> to have access to
+<a href="tqt.html">TQt</a> superclass which contains various
+enumerations. The <tt>Element</tt> class does not derive from <a href="tqt.html">TQt</a>, so we need to include <a href="tqnamespace-h.html">tqnamespace.h</a> to have access to
the TQt enum names. An alternative approach would have been to have
-made <tt>Element</tt> a <a href="ntqt.html">TQt</a> subclass. We include <a href="tqstring-h.html">tqstring.h</a> to make use of TQt's Unicode strings. As a convenience we
+made <tt>Element</tt> a <a href="tqt.html">TQt</a> subclass. We include <a href="tqstring-h.html">tqstring.h</a> to make use of TQt's Unicode strings. As a convenience we
will <tt>typedef</tt> a vector container for <tt>Element</tt>s, which is why we
pull in the <a href="tqvaluevector-h.html">tqvaluevector.h</a> header.
<p> <pre> typedef TQValueVector&lt;Element&gt; ElementVector;