summaryrefslogtreecommitdiffstats
path: root/doc/html/tqprogressdialog.html
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-10-15 13:05:33 +0900
committerMichele Calgaro <[email protected]>2024-10-22 10:05:58 +0900
commit397b7afa8e3f32268c4454bf4783ac2a5a799658 (patch)
tree0b41c33e457556bd2b9371788ddbce25263f00d6 /doc/html/tqprogressdialog.html
parent755d46927cc6a5719e695aeb8133be6897de62d8 (diff)
downloadtqt3-397b7afa8e3f32268c4454bf4783ac2a5a799658.tar.gz
tqt3-397b7afa8e3f32268c4454bf4783ac2a5a799658.zip
Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
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>.