summaryrefslogtreecommitdiffstats
path: root/doc/html/tqprogressdialog.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqprogressdialog.html')
-rw-r--r--doc/html/tqprogressdialog.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/tqprogressdialog.html b/doc/html/tqprogressdialog.html
index 5bfb7e7b4..54125a361 100644
--- a/doc/html/tqprogressdialog.html
+++ b/doc/html/tqprogressdialog.html
@@ -115,7 +115,7 @@ operation. Use <a href="#setAutoReset">setAutoReset</a>() and <a href="#setAutoC
behavior.
<p> There are two ways of using TQProgressDialog: modal and modeless.
<p> Using a modal TQProgressDialog is simpler for the programmer, but you
-must call <a href="ntqapplication.html#processEvents">TQApplication::processEvents</a>() or
+must call <a href="tqapplication.html#processEvents">TQApplication::processEvents</a>() or
<a href="tqeventloop.html#processEvents">TQEventLoop::processEvents</a>(ExcludeUserInput) to keep the event loop
running to ensure that the application doesn't freeze. Do the
operation in a loop, call <a href="#setProgress">setProgress</a>() at intervals, and check
@@ -125,7 +125,7 @@ TQProgressDialog progress( "Copying files...", "Abort Copy", numFiles,
this, "progress", TRUE );
for ( int i = 0; i &lt; numFiles; i++ ) {
progress.setProgress( i );
- tqApp-&gt;<a href="ntqapplication.html#processEvents">processEvents</a>();
+ tqApp-&gt;<a href="tqapplication.html#processEvents">processEvents</a>();
if ( progress.wasCanceled() )
break;
@@ -373,7 +373,7 @@ this property to 0 and finally set it to
in-between.
<p> <b>Warning:</b> If the progress dialog is modal
(see <a href="#TQProgressDialog">TQProgressDialog::TQProgressDialog</a>()),
-this function calls <a href="ntqapplication.html#processEvents">TQApplication::processEvents</a>(), so take care that
+this function calls <a href="tqapplication.html#processEvents">TQApplication::processEvents</a>(), so take care that
this does not cause undesirable re-entrancy in your code. For example,
don't use a TQProgressDialog inside a <a href="tqwidget.html#paintEvent">paintEvent</a>()!
<p> <p>See also <a href="#totalSteps-prop">totalSteps</a>.