summaryrefslogtreecommitdiffstats
path: root/doc/html/tqcloseevent.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqcloseevent.html')
-rw-r--r--doc/html/tqcloseevent.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/tqcloseevent.html b/doc/html/tqcloseevent.html
index 4fb2ef4d..7fa8d538 100644
--- a/doc/html/tqcloseevent.html
+++ b/doc/html/tqcloseevent.html
@@ -55,7 +55,7 @@ the `X' titlebar button. They are also sent when you call
<p> Close events contain a flag that indicates whether the receiver
wants the widget to be closed or not. When a widget accepts the
close event, it is hidden (and destroyed if it was created with
-the <a href="ntqt.html#WidgetFlags-enum">WDestructiveClose</a> flag). If it refuses to accept the close
+the <a href="tqt.html#WidgetFlags-enum">WDestructiveClose</a> flag). If it refuses to accept the close
event nothing happens. (Under X11 it is possible that the window
manager will forcibly close the window; but at the time of writing
we are not aware of any window manager that does this.)
@@ -72,7 +72,7 @@ special handing, you should reimplement the event handler.
Application Walkthrough</a> shows a close event handler that
asks whether to save a document before closing.
<p> If you want the widget to be deleted when it is closed, create it
-with the <a href="ntqt.html#WidgetFlags-enum">WDestructiveClose</a> widget flag. This is very useful for
+with the <a href="tqt.html#WidgetFlags-enum">WDestructiveClose</a> widget flag. This is very useful for
independent top-level windows in a multi-window application.
<p> <a href="tqobject.html">TQObject</a>s emits the <a href="tqobject.html#destroyed">destroyed()</a> signal when they are deleted.
<p> If the last top-level window is closed, the
@@ -99,7 +99,7 @@ to FALSE.
agrees to close the widget.
<p> The accept flag is <em>not</em> set by default.
<p> If you choose to accept in <a href="tqwidget.html#closeEvent">TQWidget::closeEvent</a>(), the widget will
-be hidden. If the widget's <a href="ntqt.html#WidgetFlags-enum">WDestructiveClose</a> flag is set, it
+be hidden. If the widget's <a href="tqt.html#WidgetFlags-enum">WDestructiveClose</a> flag is set, it
will also be destroyed.
<p> <p>See also <a href="#ignore">ignore</a>() and <a href="tqwidget.html#hide">TQWidget::hide</a>().