summaryrefslogtreecommitdiffstats
path: root/doc/object.doc
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-08-31 19:56:49 +0900
committerMichele Calgaro <[email protected]>2024-08-31 19:56:49 +0900
commit39f8a475b4ec5c87a11a7e9300a30ef1c5b4a7e1 (patch)
treec38058d08754b389bd058a6d63f75086b49a22b1 /doc/object.doc
parente42ec295c2134770a1eb07032f5f22ca4ba1daa6 (diff)
downloadtqt3-39f8a475b4ec5c87a11a7e9300a30ef1c5b4a7e1.tar.gz
tqt3-39f8a475b4ec5c87a11a7e9300a30ef1c5b4a7e1.zip
Rename remaining ntq[i-l]* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/object.doc')
-rw-r--r--doc/object.doc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/object.doc b/doc/object.doc
index 027d8371c..2df02d368 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 TQCloseEvent.
+\l TQPaintEvent, \l QMouseEvent, \l TQKeyEvent 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,
@@ -503,7 +503,7 @@ contain:
\code
bool MyClass:event( TQEvent *evt ) {
if ( evt->type() == TQEvent::KeyPress ) {
- QKeyEvent *ke = (QKeyEvent *)evt;
+ TQKeyEvent *ke = (TQKeyEvent *)evt;
if ( ke->key() == Key_Tab ) {
// special tab handling here
ke->accept();