summaryrefslogtreecommitdiffstats
path: root/doc/html/eventsandfilters.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/eventsandfilters.html')
-rw-r--r--doc/html/eventsandfilters.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/eventsandfilters.html b/doc/html/eventsandfilters.html
index e2950722a..23b9a1c0b 100644
--- a/doc/html/eventsandfilters.html
+++ b/doc/html/eventsandfilters.html
@@ -45,7 +45,7 @@ from other sources, e.g. <a href="tqtimerevent.html">TQTimerEvent</a>, and some
application program. TQt is symmetric, as usual, so you can send
events in exactly the same ways as TQt's own event loop does.
<p> Most events types have special classes, most commonly <a href="qresizeevent.html">TQResizeEvent</a>,
-<a href="tqpaintevent.html">TQPaintEvent</a>, <a href="qmouseevent.html">TQMouseEvent</a>, <a href="qkeyevent.html">TQKeyEvent</a> and <a href="qcloseevent.html">TQCloseEvent</a>.
+<a href="tqpaintevent.html">TQPaintEvent</a>, <a href="qmouseevent.html">TQMouseEvent</a>, <a href="qkeyevent.html">TQKeyEvent</a> and <a href="tqcloseevent.html">TQCloseEvent</a>.
There are many others, perhaps forty or so, but most are rather odd.
<p> Each class subclasses <a href="tqevent.html">TQEvent</a> and adds event-specific functions; see,
for example, <a href="qresizeevent.html">TQResizeEvent</a>. In the case of <a href="qresizeevent.html">TQResizeEvent</a>, <a href="qresizeevent.html#size">TQResizeEvent::size</a>() and <a href="qresizeevent.html#oldSize">TQResizeEvent::oldSize</a>() are added.
@@ -94,7 +94,7 @@ contain:
return TRUE;
}
} else if ( evt-&gt;<a href="tqevent.html#type">type</a>() &gt;= TQEvent::User ) {
- <a href="qcustomevent.html">TQCustomEvent</a> *ce = (TQCustomEvent*) evt;
+ <a href="tqcustomevent.html">TQCustomEvent</a> *ce = (TQCustomEvent*) evt;
// custom event handling here
return TRUE;
}
@@ -137,8 +137,8 @@ posted event will typically be dispatched very soon after the
initialization of the object is complete.
<p> To create events of a custom type, you need to define an event number,
which must be greater than <a href="tqevent.html#Type-enum">TQEvent::User</a>, and probably you also need
-to subclass <a href="qcustomevent.html">TQCustomEvent</a> in order to pass characteristics about
-your custom event. See the documentation to <a href="qcustomevent.html">TQCustomEvent</a> for
+to subclass <a href="tqcustomevent.html">TQCustomEvent</a> in order to pass characteristics about
+your custom event. See the documentation to <a href="tqcustomevent.html">TQCustomEvent</a> for
details.
<p>
<!-- eof -->