diff options
Diffstat (limited to 'doc/threads.doc')
-rw-r--r-- | doc/threads.doc | 4 |
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 |