From 0582c90a9ed4b965629267713f51c0da7c38b39d Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 4 Sep 2024 11:53:23 +0900 Subject: Rename remaining ntq[m-r]* related files to equivalent tq* (except ntqmodules.h) Signed-off-by: Michele Calgaro --- doc/html/tutorial2-03.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/html/tutorial2-03.html') diff --git a/doc/html/tutorial2-03.html b/doc/html/tutorial2-03.html index 26aa4864a..30eef5ceb 100644 --- a/doc/html/tutorial2-03.html +++ b/doc/html/tutorial2-03.html @@ -53,7 +53,7 @@ of chart has a (relative) position stored in the m_propoints array.

    #include <tqcolor.h>
-    #include <ntqnamespace.h>
+    #include <tqnamespace.h>
     #include <tqstring.h>
     #include <tqvaluevector.h>
 
@@ -61,9 +61,9 @@ of chart has a (relative) position stored in the m_propoints array. #includes four TQt classes. TQt is often perceived as a purely GUI toolkit, but it provides many non-GUI classes to support most aspects of application programming. We use tqcolor.h so that we can hold the -paint color and text color in the Element class. The use of ntqnamespace.h is slightly obscure. Most TQt classes are derived from the +paint color and text color in the Element class. The use of tqnamespace.h is slightly obscure. Most TQt classes are derived from the TQt superclass which contains various -enumerations. The Element class does not derive from TQt, so we need to include ntqnamespace.h to have access to +enumerations. The Element class does not derive from TQt, so we need to include tqnamespace.h to have access to the TQt enum names. An alternative approach would have been to have made Element a TQt subclass. We include tqstring.h to make use of TQt's Unicode strings. As a convenience we will typedef a vector container for Elements, which is why we -- cgit v1.2.3