summaryrefslogtreecommitdiffstats
path: root/doc/tutorial.doc
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-27 02:13:42 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-27 02:13:42 -0600
commit520c05ef06ce203ad32470730f68402bc7719157 (patch)
tree8d0bb18bbbecb4c837e232848905e5819db84b81 /doc/tutorial.doc
parentb82553bf90cb5311cfe8e673b07cf6cffc95fd3c (diff)
downloadtqt3-520c05ef06ce203ad32470730f68402bc7719157.tar.gz
tqt3-520c05ef06ce203ad32470730f68402bc7719157.zip
Automated update from qt3
Diffstat (limited to 'doc/tutorial.doc')
-rw-r--r--doc/tutorial.doc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/tutorial.doc b/doc/tutorial.doc
index c015928c..5ed29990 100644
--- a/doc/tutorial.doc
+++ b/doc/tutorial.doc
@@ -445,18 +445,18 @@ imminent death.)
The setGeometry() call does the same as move() and resize() did in the
previous chapters.
-\printline qApp
+\printline tqApp
\printline }
Because the MyWidget class doesn't know about the application object, it
-has to connect to Qt's pointer to it, \c qApp.
+has to connect to Qt's pointer to it, \c tqApp.
A widget is a software component and should know as little as possible
about its environment in order to be as general and reusable as
possible.
Knowing the name of the application object would break this principle,
-so Qt offers an alias, qApp, for the cases in which a component such as
+so Qt offers an alias, tqApp, for the cases in which a component such as
MyWidget needs to talk to the application object.
\printuntil }