summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqobject.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqobject.3qt')
-rw-r--r--doc/man/man3/tqobject.3qt14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/man/man3/tqobject.3qt b/doc/man/man3/tqobject.3qt
index 64367ea3a..81f079cf3 100644
--- a/doc/man/man3/tqobject.3qt
+++ b/doc/man/man3/tqobject.3qt
@@ -304,7 +304,7 @@ You must use the TQ_SIGNAL() and TQ_SLOT() macros when specifying the \fIsignal\
.br
TQLabel *label = new TQLabel;
.br
- QScrollBar *scroll = new QScrollBar;
+ TQScrollBar *scroll = new TQScrollBar;
.br
TQObject::connect( scroll, TQ_SIGNAL(valueChanged(int)),
.br
@@ -336,7 +336,7 @@ A signal can also be connected to another signal:
.br
private:
.br
- QPushButton *aButton;
+ TQPushButton *aButton;
.br
};
.br
@@ -345,7 +345,7 @@ A signal can also be connected to another signal:
.br
{
.br
- aButton = new QPushButton( this );
+ aButton = new TQPushButton( this );
.br
connect( aButton, TQ_SIGNAL(clicked()), TQ_SIGNAL(myUsefulSignal()) );
.br
@@ -583,7 +583,7 @@ Notice in the example above that unhandled events are passed to the base class's
.PP
See also installEventFilter().
.PP
-Reimplemented in QAccel, QScrollView, and QSpinBox.
+Reimplemented in QAccel, TQScrollView, and TQSpinBox.
.SH "bool TQObject::highPriority () const"
Returns TRUE if the object is a high-priority object, or FALSE if it is a standard-priority object.
.PP
@@ -606,9 +606,9 @@ Example:
t->inherits( "QButton" ); // returns FALSE
.br
.br
- // QScrollBar inherits TQWidget and QRangeControl
+ // TQScrollBar inherits TQWidget and QRangeControl
.br
- QScrollBar *s = new QScrollBar( 0 );
+ TQScrollBar *s = new TQScrollBar( 0 );
.br
s->inherits( "TQWidget" ); // returns TRUE
.br
@@ -690,7 +690,7 @@ And here's how to install it on two widgets:
.br
KeyPressEater *keyPressEater = new KeyPressEater( this );
.br
- QPushButton *pushButton = new QPushButton( this );
+ TQPushButton *pushButton = new TQPushButton( this );
.br
QListView *listView = new QListView( this );
.br