diff options
Diffstat (limited to 'doc/html/tqdialog.html')
-rw-r--r-- | doc/html/tqdialog.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/tqdialog.html b/doc/html/tqdialog.html index f8d072887..0c8fbad3f 100644 --- a/doc/html/tqdialog.html +++ b/doc/html/tqdialog.html @@ -112,7 +112,7 @@ setModal(TRUE) is especially useful for progress dialogs, where the user must have the ability to interact with the dialog, e.g. to cancel a long running operation. If you use show() and setModal(TRUE) together you must call -<a href="ntqapplication.html#processEvents">TQApplication::processEvents</a>() periodically during processing to +<a href="tqapplication.html#processEvents">TQApplication::processEvents</a>() periodically during processing to enable the user to interact with the dialog. (See <a href="tqprogressdialog.html">TQProgressDialog</a>.) <p> <a name="modeless"></a> <h3> Modeless Dialogs @@ -188,13 +188,13 @@ event loop. <pre> int main( int argc, char **argv ) { - <a href="ntqapplication.html">TQApplication</a> a( argc, argv ); + <a href="tqapplication.html">TQApplication</a> a( argc, argv ); </pre><pre> int scale = 10; </pre><pre> LifeDialog *life = new LifeDialog( scale ); - <a name="x2133"></a> a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( life ); + <a name="x2133"></a> a.<a href="tqapplication.html#setMainWidget">setMainWidget</a>( life ); <a name="x2134"></a> life-><a href="tqwidget.html#setCaption">setCaption</a>("TQt Example - Life"); <a name="x2135"></a> life-><a href="tqwidget.html#show">show</a>(); -</pre><pre> <a name="x2132"></a> return a.<a href="ntqapplication.html#exec">exec</a>(); +</pre><pre> <a name="x2132"></a> return a.<a href="tqapplication.html#exec">exec</a>(); } </pre> <p> <p>See also <a href="tqtabdialog.html">TQTabDialog</a>, <a href="tqwidget.html">TQWidget</a>, <a href="tqprogressdialog.html">TQProgressDialog</a>, <a href="guibooks.html#fowler">GUI Design Handbook: Dialogs, Standard</a>, <a href="abstractwidgets.html">Abstract Widget Classes</a>, and <a href="dialogs.html">Dialog Classes</a>. @@ -239,9 +239,9 @@ is shown with <a href="#exec">exec</a>(), <a href="#done">done</a>() causes the and exec() to return <em>r</em>. <p> As with <a href="tqwidget.html#close">TQWidget::close</a>(), done() deletes the dialog if the <a href="tqt.html#WidgetFlags-enum">WDestructiveClose</a> flag is set. If the dialog is the application's main widget, the application terminates. If the dialog is the -last window closed, the <a href="ntqapplication.html#lastWindowClosed">TQApplication::lastWindowClosed</a>() signal is +last window closed, the <a href="tqapplication.html#lastWindowClosed">TQApplication::lastWindowClosed</a>() signal is emitted. -<p> <p>See also <a href="#accept">accept</a>(), <a href="#reject">reject</a>(), <a href="ntqapplication.html#mainWidget">TQApplication::mainWidget</a>(), and <a href="ntqapplication.html#quit">TQApplication::quit</a>(). +<p> <p>See also <a href="#accept">accept</a>(), <a href="#reject">reject</a>(), <a href="tqapplication.html#mainWidget">TQApplication::mainWidget</a>(), and <a href="tqapplication.html#quit">TQApplication::quit</a>(). <h3 class=fn>int <a name="exec"></a>TQDialog::exec ()<tt> [slot]</tt> </h3> |