summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqmessagebox.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/ntqmessagebox.html')
-rw-r--r--doc/html/ntqmessagebox.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/ntqmessagebox.html b/doc/html/ntqmessagebox.html
index a18fd0124..09eb09508 100644
--- a/doc/html/ntqmessagebox.html
+++ b/doc/html/ntqmessagebox.html
@@ -34,7 +34,7 @@ body { background: #ffffff; color: black; }
<p>The TQMessageBox class provides a modal dialog with a short message, an icon, and some buttons.
<a href="#details">More...</a>
<p><tt>#include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt;</tt>
-<p>Inherits <a href="ntqdialog.html">TQDialog</a>.
+<p>Inherits <a href="tqdialog.html">TQDialog</a>.
<p><a href="qmessagebox-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
@@ -248,7 +248,7 @@ TQMessageBox from scratch and use custom button texts:
TQMessageBox::Cancel | TQMessageBox::Escape );
mb.<a href="#setButtonText">setButtonText</a>( TQMessageBox::Yes, "Save" );
mb.<a href="#setButtonText">setButtonText</a>( TQMessageBox::No, "Discard" );
- switch( mb.<a href="ntqdialog.html#exec">exec</a>() ) {
+ switch( mb.<a href="tqdialog.html#exec">exec</a>() ) {
case TQMessageBox::Yes:
// save and exit
break;
@@ -294,7 +294,7 @@ latter accepts a <a href="tqpixmap.html">TQPixmap</a> and can be used to set cus
<p> <a href="#setButtonText">setButtonText</a>() and <a href="#buttonText">buttonText</a>() provide access to the buttons.
<p> TQMessageBox has no signals or slots.
<p> <img src=qmsgbox-m.png> <img src=qmsgbox-w.png>
-<p> <p>See also <a href="ntqdialog.html">TQDialog</a>, <a href="http://www.iarchitect.com/errormsg.htm
+<p> <p>See also <a href="tqdialog.html">TQDialog</a>, <a href="http://www.iarchitect.com/errormsg.htm
">Isys on error messages</a>, <a href="guibooks.html#fowler">GUI Design Handbook: Message Box</a>, and <a href="dialogs.html">Dialog Classes</a>.
<hr><h2>Member Type Documentation</h2>
@@ -320,7 +320,7 @@ Constructs a message box with no text and a button with the label
<p> If <em>parent</em> is 0, the message box becomes an application-global
modal dialog box. If <em>parent</em> is a widget, the message box
becomes modal relative to <em>parent</em>.
-<p> The <em>parent</em> and <em>name</em> arguments are passed to the <a href="ntqdialog.html">TQDialog</a>
+<p> The <em>parent</em> and <em>name</em> arguments are passed to the <a href="tqdialog.html">TQDialog</a>
constructor.
<h3 class=fn><a name="TQMessageBox-2"></a>TQMessageBox::TQMessageBox ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;caption, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;text, <a href="ntqmessagebox.html#Icon-enum">Icon</a>&nbsp;icon, int&nbsp;button0, int&nbsp;button1, int&nbsp;button2, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;parent = 0, const&nbsp;char&nbsp;*&nbsp;name = 0, bool&nbsp;modal = TRUE, WFlags&nbsp;f = WStyle_DialogBorder )
@@ -366,7 +366,7 @@ pressed).
TQMessageBox::Yes | TQMessageBox::Default,
TQMessageBox::No | TQMessageBox::Escape,
TQMessageBox::<a href="ntqt.html#ButtonState-enum">NoButton</a> );
- if ( mb.<a href="ntqdialog.html#exec">exec</a>() == TQMessageBox::No )
+ if ( mb.<a href="tqdialog.html#exec">exec</a>() == TQMessageBox::No )
// try again
</pre>
@@ -376,7 +376,7 @@ becomes modal relative to <em>parent</em>.
<p> If <em>modal</em> is TRUE the message box is modal; otherwise it
is modeless.
<p> The <em>parent</em>, <em>name</em>, <em>modal</em>, and <em>f</em> arguments are passed to
-the <a href="ntqdialog.html">TQDialog</a> constructor.
+the <a href="tqdialog.html">TQDialog</a> constructor.
<p> <p>See also <a href="tqwidget.html#caption-prop">caption</a>, <a href="#text-prop">text</a>, and <a href="#icon-prop">icon</a>.
<h3 class=fn><a name="~TQMessageBox"></a>TQMessageBox::~TQMessageBox ()
@@ -411,7 +411,7 @@ See the examples/menu/menu.cpp example.
<h3 class=fn>void <a name="adjustSize"></a>TQMessageBox::adjustSize ()<tt> [virtual]</tt>
</h3>
Adjusts the size of the message box to fit the contents just before
-<a href="ntqdialog.html#exec">TQDialog::exec</a>() or <a href="ntqdialog.html#show">TQDialog::show</a>() is called.
+<a href="tqdialog.html#exec">TQDialog::exec</a>() or <a href="tqdialog.html#show">TQDialog::show</a>() is called.
<p> This function will not be called if the message box has been explicitly
resized before showing it.