summaryrefslogtreecommitdiffstats
path: root/doc/object.doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/object.doc')
-rw-r--r--doc/object.doc10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/object.doc b/doc/object.doc
index ec18c7216..027d8371c 100644
--- a/doc/object.doc
+++ b/doc/object.doc
@@ -453,7 +453,7 @@ application program. TQt is symmetric, as usual, so you can send
events in exactly the same ways as Qt's own event loop does.
Most events types have special classes, most commonly \l QResizeEvent,
-\l TQPaintEvent, \l QMouseEvent, \l QKeyEvent and \l QCloseEvent.
+\l TQPaintEvent, \l QMouseEvent, \l QKeyEvent and \l TQCloseEvent.
There are many others, perhaps forty or so, but most are rather odd.
Each class subclasses TQEvent and adds event-specific functions; see,
@@ -510,7 +510,7 @@ contain:
return TRUE;
}
} else if ( evt->type() >= TQEvent::User ) {
- QCustomEvent *ce = (QCustomEvent*) evt;
+ TQCustomEvent *ce = (TQCustomEvent*) evt;
// custom event handling here
return TRUE;
}
@@ -565,8 +565,8 @@ initialization of the object is complete.
To create events of a custom type, you need to define an event number,
which must be greater than \c TQEvent::User, and probably you also need
-to subclass \l QCustomEvent in order to pass characteristics about
-your custom event. See the documentation to \l QCustomEvent for
+to subclass \l TQCustomEvent in order to pass characteristics about
+your custom event. See the documentation to \l TQCustomEvent for
details.
*/
@@ -581,7 +581,7 @@ details.
When you create a TQObject with another object as parent, it's added to
the parent's \link TQObject::children() children() \endlink list, and
is deleted when the parent is. It turns out that this approach fits
-the needs of GUI objects very well. For example, a \l QAccel (keyboard
+the needs of GUI objects very well. For example, a \l TQAccel (keyboard
accelerator) is a child of the relevant window, so when the user closes
that window, the accelerator is deleted too.