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 863e3ba79..411f4b299 100644
--- a/doc/object.doc
+++ b/doc/object.doc
@@ -128,7 +128,7 @@ this widget is deleted, the timer is deleted too. Next, its timeout
signal is connected to the slot that will do the work, and finally
it's started.
-TQTimer also provides a simple one-shot timer API. \l QButton uses this
+TQTimer also provides a simple one-shot timer API. \l TQButton uses this
to show the button being pressed down and then (0.1 seconds later) be
released when the keyboard is used to "press" a button, for example:
@@ -252,7 +252,7 @@ the context specific font'.
\i An attribute "designable" that indicates whether it makes sense to
make the property available in a GUI builder (e.g. \link
designer-manual.book TQt Designer\endlink). For most properties this
-makes sense, but not for all, e.g. \l QButton::isDown(). The user can
+makes sense, but not for all, e.g. \l TQButton::isDown(). The user can
press buttons, and the application programmer can make the program
press its own buttons, but a GUI design tool can't press buttons.
@@ -266,7 +266,7 @@ TQObject without knowing anything about the class in use. These two
function calls are equivalent:
\code
- // QButton *b and TQObject *o point to the same button
+ // TQButton *b and TQObject *o point to the same button
b->setDown( TRUE );
o->setProperty( "down", TRUE );
\endcode
@@ -416,7 +416,7 @@ achieve this using the following code:
\endcode
Another example is TQToolButton. By default TQToolButton has a read-only
-"toggleButton" property, because that's what it inherits from QButton:
+"toggleButton" property, because that's what it inherits from TQButton:
\code
TQ_PROPERTY( bool toggleButton READ isToggleButton )
\endcode
@@ -481,7 +481,7 @@ implementation; for example:
{
// my implementation
- QTable::contentsMouseMoveEvent( me ); // hand it on
+ TQTable::contentsMouseMoveEvent( me ); // hand it on
}
\endcode
If you want to replace the base class's function then you must