summaryrefslogtreecommitdiffstats
path: root/doc/threads.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/threads.doc
parentb82553bf90cb5311cfe8e673b07cf6cffc95fd3c (diff)
downloadtqt3-520c05ef06ce203ad32470730f68402bc7719157.tar.gz
tqt3-520c05ef06ce203ad32470730f68402bc7719157.zip
Automated update from qt3
Diffstat (limited to 'doc/threads.doc')
-rw-r--r--doc/threads.doc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/threads.doc b/doc/threads.doc
index 21f986952..f05fe8d07 100644
--- a/doc/threads.doc
+++ b/doc/threads.doc
@@ -255,7 +255,7 @@ are examples of simple GUI operations:
\code
...
- qApp->lock();
+ tqApp->lock();
QPainter p;
p.begin( mywidget );
@@ -263,7 +263,7 @@ are examples of simple GUI operations:
p.drawLine( 0,0,100,100 );
p.end();
- qApp->unlock();
+ tqApp->unlock();
...
\endcode