summaryrefslogtreecommitdiffstats
path: root/doc/tutorial2.doc
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-07-15 19:08:22 +0900
committerMichele Calgaro <[email protected]>2024-07-18 09:31:41 +0900
commita30f5359f03c3017fa19a6770fab32d25d22cb87 (patch)
treecb365dd7a1c3666e3f972c6cad04be7b8e846cba /doc/tutorial2.doc
parent25ad1267da6916e738a126ff5a9b41cd686adfc6 (diff)
downloadtqt3-a30f5359f03c3017fa19a6770fab32d25d22cb87.tar.gz
tqt3-a30f5359f03c3017fa19a6770fab32d25d22cb87.zip
Rename graphics class nt* related files to equivalent tq* (part 1)
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/tutorial2.doc')
-rw-r--r--doc/tutorial2.doc8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/tutorial2.doc b/doc/tutorial2.doc
index 78f5f2bc7..60f188e63 100644
--- a/doc/tutorial2.doc
+++ b/doc/tutorial2.doc
@@ -136,7 +136,7 @@ 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 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 \c ntqcolor.h so that we can hold the
+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
ntqnamespace.h is slightly obscure. Most TQt classes are derived from the
\link ntqt.html Qt\endlink superclass which contains various
@@ -490,7 +490,7 @@ them back when we construct the form.
\skipto TQSettings
\printuntil PIE
-\skipto QFont
+\skipto TQFont
\printuntil updateRecentFilesMenu
The TQSettings class handles user settings in a platform-independent
@@ -1204,7 +1204,7 @@ function and put the focus back into the table.
\printline
If this function is called with the focus on a color cell we call
-the static QColorDialog::getColor() dialog to get the user's choice of
+the static TQColorDialog::getColor() dialog to get the user's choice of
color. If they chose a color we fill the color cell's pixmap with that
color and set the cell's text to the new color's name.
@@ -1347,7 +1347,7 @@ accelerators.
\printuntil }
When the user clicks the Font button this slot is invoked. It simply
-calls the static QFontDialog::getFont() function to obtain the user's
+calls the static TQFontDialog::getFont() function to obtain the user's
choice of font. If they chose a font we call our setFont() slot which
will present a textual description of the font in the font label.