summaryrefslogtreecommitdiffstats
path: root/doc/html/threads.html
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/html/threads.html
parentb82553bf90cb5311cfe8e673b07cf6cffc95fd3c (diff)
downloadtqt3-520c05ef06ce203ad32470730f68402bc7719157.tar.gz
tqt3-520c05ef06ce203ad32470730f68402bc7719157.zip
Automated update from qt3
Diffstat (limited to 'doc/html/threads.html')
-rw-r--r--doc/html/threads.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/threads.html b/doc/html/threads.html
index 1a2fd8f20..16027c1cf 100644
--- a/doc/html/threads.html
+++ b/doc/html/threads.html
@@ -239,7 +239,7 @@ operations. Operations such as creating a <a href="ntqpainter.html">TQPainter</
are examples of simple GUI operations:
<p> <pre>
...
- qApp-&gt;<a href="ntqapplication.html#lock">lock</a>();
+ tqApp-&gt;<a href="ntqapplication.html#lock">lock</a>();
<a href="ntqpainter.html">TQPainter</a> p;
p.<a href="ntqpainter.html#begin">begin</a>( mywidget );
@@ -247,7 +247,7 @@ are examples of simple GUI operations:
p.<a href="ntqpainter.html#drawLine">drawLine</a>( 0,0,100,100 );
p.<a href="ntqpainter.html#end">end</a>();
- qApp-&gt;<a href="ntqapplication.html#unlock">unlock</a>();
+ tqApp-&gt;<a href="ntqapplication.html#unlock">unlock</a>();
...
</pre>