diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-27 02:13:42 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-27 02:13:42 -0600 |
commit | 520c05ef06ce203ad32470730f68402bc7719157 (patch) | |
tree | 8d0bb18bbbecb4c837e232848905e5819db84b81 /doc/html/threads.html | |
parent | b82553bf90cb5311cfe8e673b07cf6cffc95fd3c (diff) | |
download | tqt3-520c05ef06ce203ad32470730f68402bc7719157.tar.gz tqt3-520c05ef06ce203ad32470730f68402bc7719157.zip |
Automated update from qt3
Diffstat (limited to 'doc/html/threads.html')
-rw-r--r-- | doc/html/threads.html | 4 |
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-><a href="ntqapplication.html#lock">lock</a>(); + tqApp-><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-><a href="ntqapplication.html#unlock">unlock</a>(); + tqApp-><a href="ntqapplication.html#unlock">unlock</a>(); ... </pre> |