summaryrefslogtreecommitdiffstats
path: root/doc/threads.doc
diff options
context:
space:
mode:
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 21f98695..f05fe8d0 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