diff options
Diffstat (limited to 'doc/tutorial2.doc')
-rw-r--r-- | doc/tutorial2.doc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/tutorial2.doc b/doc/tutorial2.doc index 8b8a93ab6..62b699a51 100644 --- a/doc/tutorial2.doc +++ b/doc/tutorial2.doc @@ -25,7 +25,7 @@ than the first tutorial. It introduces many aspects of TQt programming, including the creation of menus (including a recent files list), toolbars and dialogs, loading and saving user settings, etc. -If you're completely new to Qt, please read \link how-to-learn-ntqt.html +If you're completely new to Qt, please read \link how-to-learn-tqt.html How to Learn Qt\endlink if you haven't already done so. \list @@ -139,11 +139,11 @@ toolkit, but it provides many non-GUI classes to support most aspects of application programming. We use \c tqcolor.h so that we can hold the paint color and text color in the \c Element class. The use of \c tqnamespace.h is slightly obscure. Most TQt classes are derived from the -\link ntqt.html Qt\endlink superclass which contains various -enumerations. The \c Element class does not derive from \link ntqt.html +\link tqt.html Qt\endlink superclass which contains various +enumerations. The \c Element class does not derive from \link tqt.html Qt\endlink, so we need to include \c tqnamespace.h to have access to the TQt enum names. An alternative approach would have been to have -made \c Element a \link ntqt.html Qt\endlink subclass. We include \c +made \c Element a \link tqt.html Qt\endlink subclass. We include \c tqstring.h to make use of Qt's Unicode strings. As a convenience we will \c typedef a vector container for \c{Element}s, which is why we pull in the \c tqvaluevector.h header. |