diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-09-09 14:57:42 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-09-12 18:58:18 +0900 |
| commit | 6f57abfc9cd3acf1d648aee696947ac9216adb71 (patch) | |
| tree | 4ae374b1ce01d388bca2249c5d903d79a6cb814f /doc/html/tutorial2-03.html | |
| parent | 0582c90a9ed4b965629267713f51c0da7c38b39d (diff) | |
| download | tqt-6f57abfc.tar.gz tqt-6f57abfc.zip | |
Rename remaining ntq[s-z]* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tutorial2-03.html')
| -rw-r--r-- | doc/html/tutorial2-03.html | 6 |
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<Element> ElementVector; |
