diff options
author | Timothy Pearson <[email protected]> | 2012-01-26 23:32:43 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-01-26 23:32:43 -0600 |
commit | ea318d1431c89e647598c510c4245c6571aa5f46 (patch) | |
tree | 996d29b80c30d453dda86d1a23162d441628f169 /doc/tutorial2.doc | |
parent | aaf89d4b48f69c9293feb187db26362e550b5561 (diff) | |
download | tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.tar.gz tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.zip |
Update to latest tqt3 automated conversion
Diffstat (limited to 'doc/tutorial2.doc')
-rw-r--r-- | doc/tutorial2.doc | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/tutorial2.doc b/doc/tutorial2.doc index ad20fef68..12756b1d7 100644 --- a/doc/tutorial2.doc +++ b/doc/tutorial2.doc @@ -25,7 +25,7 @@ than the first tutorial. It introduces many aspects of Qt 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-qt.html +If you're completely new to Qt, please read \link how-to-learn-ntqt.html How to Learn Qt\endlink if you haven't already done so. \list @@ -136,17 +136,17 @@ of chart has a (relative) position stored in the \c m_propoints array. Although the \c Element class is a purely internal data class, it \c{#include}s four Qt classes. Qt is often perceived as a purely GUI toolkit, but it provides many non-GUI classes to support most aspects -of application programming. We use \c qcolor.h so that we can hold the +of application programming. We use \c ntqcolor.h so that we can hold the paint color and text color in the \c Element class. The use of \c -qnamespace.h is slightly obscure. Most Qt classes are derived from the -\link qt.html Qt\endlink superclass which contains various -enumerations. The \c Element class does not derive from \link qt.html -Qt\endlink, so we need to include \c qnamespace.h to have access to +ntqnamespace.h is slightly obscure. Most Qt 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 +Qt\endlink, so we need to include \c ntqnamespace.h to have access to the Qt enum names. An alternative approach would have been to have -made \c Element a \link qt.html Qt\endlink subclass. We include \c -qstring.h to make use of Qt's Unicode strings. As a convenience we +made \c Element a \link ntqt.html Qt\endlink subclass. We include \c +ntqstring.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 qvaluevector.h header. +pull in the \c ntqvaluevector.h header. \skipto QValueVector \printline @@ -250,7 +250,7 @@ filter the data using a scripting language. \printto const Our implementation of the operators requires the inclusion of \c -qtextstream.h and \c qstringlist.h. +ntqtextstream.h and \c ntqstringlist.h. \printto Element |