diff options
Diffstat (limited to 'doc/html/tqobject.html')
-rw-r--r-- | doc/html/tqobject.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/tqobject.html b/doc/html/tqobject.html index 1aeb4eb38..294fc0f79 100644 --- a/doc/html/tqobject.html +++ b/doc/html/tqobject.html @@ -168,7 +168,7 @@ and have an iterator class, TQObjectListIt. </h3> Constructs an object called <em>name</em> with parent object, <em>parent</em>. <p> The parent of an object may be viewed as the object's owner. For -instance, a <a href="ntqdialog.html">dialog box</a> is the parent of the +instance, a <a href="tqdialog.html">dialog box</a> is the parent of the "OK" and "Cancel" buttons it contains. <p> The destructor of a parent object destroys all child objects. <p> Setting <em>parent</em> to 0 constructs an object with no parent. If the @@ -283,8 +283,8 @@ returns FALSE. and the <em>member</em>, for example: <pre> <a href="tqlabel.html">TQLabel</a> *label = new <a href="tqlabel.html">TQLabel</a>; - <a href="ntqscrollbar.html">TQScrollBar</a> *scroll = new <a href="ntqscrollbar.html">TQScrollBar</a>; - TQObject::<a href="#connect">connect</a>( scroll, TQ_SIGNAL(<a href="ntqscrollbar.html#valueChanged">valueChanged</a>(int)), + <a href="tqscrollbar.html">TQScrollBar</a> *scroll = new <a href="tqscrollbar.html">TQScrollBar</a>; + TQObject::<a href="#connect">connect</a>( scroll, TQ_SIGNAL(<a href="tqscrollbar.html#valueChanged">valueChanged</a>(int)), label, TQ_SLOT(<a href="tqlabel.html#setNum">setNum</a>(int)) ); </pre> @@ -306,12 +306,12 @@ label, TQ_SLOT(setNum(int v)) ); void myUsefulSignal(); private: - <a href="ntqpushbutton.html">TQPushButton</a> *aButton; + <a href="tqpushbutton.html">TQPushButton</a> *aButton; }; MyWidget::MyWidget() { - aButton = new <a href="ntqpushbutton.html">TQPushButton</a>( this ); + aButton = new <a href="tqpushbutton.html">TQPushButton</a>( this ); <a href="#connect">connect</a>( aButton, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), TQ_SIGNAL(myUsefulSignal()) ); } </pre> @@ -543,7 +543,7 @@ sure to return TRUE. Otherwise, TQt will forward the event to the deleted object and the program might crash. <p> <p>See also <a href="#installEventFilter">installEventFilter</a>(). -<p>Reimplemented in <a href="ntqaccel.html#eventFilter">TQAccel</a>, <a href="ntqscrollview.html#eventFilter">TQScrollView</a>, and <a href="ntqspinbox.html#eventFilter">TQSpinBox</a>. +<p>Reimplemented in <a href="ntqaccel.html#eventFilter">TQAccel</a>, <a href="tqscrollview.html#eventFilter">TQScrollView</a>, and <a href="tqspinbox.html#eventFilter">TQSpinBox</a>. <h3 class=fn>bool <a name="highPriority"></a>TQObject::highPriority () const </h3> @@ -567,7 +567,7 @@ returns FALSE. t-><a href="#inherits">inherits</a>( "TQButton" ); // returns FALSE // TQScrollBar inherits TQWidget and TQRangeControl - <a href="ntqscrollbar.html">TQScrollBar</a> *s = new <a href="ntqscrollbar.html">TQScrollBar</a>( 0 ); + <a href="tqscrollbar.html">TQScrollBar</a> *s = new <a href="tqscrollbar.html">TQScrollBar</a>( 0 ); s-><a href="#inherits">inherits</a>( "TQWidget" ); // returns TRUE s-><a href="#inherits">inherits</a>( "TQRangeControl" ); // returns FALSE </pre> @@ -628,7 +628,7 @@ monitored objects: <p> And here's how to install it on two widgets: <pre> KeyPressEater *keyPressEater = new KeyPressEater( this ); - <a href="ntqpushbutton.html">TQPushButton</a> *pushButton = new <a href="ntqpushbutton.html">TQPushButton</a>( this ); + <a href="tqpushbutton.html">TQPushButton</a> *pushButton = new <a href="tqpushbutton.html">TQPushButton</a>( this ); <a href="ntqlistview.html">TQListView</a> *listView = new <a href="ntqlistview.html">TQListView</a>( this ); pushButton-><a href="#installEventFilter">installEventFilter</a>( keyPressEater ); @@ -894,7 +894,7 @@ translators while performing translations is not supported. Doing so will probably result in crashes or other undesirable behavior. <p> <p>See also <a href="#trUtf8">trUtf8</a>(), <a href="ntqapplication.html#translate">TQApplication::translate</a>(), and <a href="i18n.html">Internationalization with TQt</a>. -<p>Example: <a href="ntqdialog.html#x2130">network/networkprotocol/view.cpp</a>. +<p>Example: <a href="tqdialog.html#x2130">network/networkprotocol/view.cpp</a>. <h3 class=fn><a href="tqstring.html">TQString</a> <a name="trUtf8"></a>TQObject::trUtf8 ( const char * sourceText, const char * comment )<tt> [static]</tt> </h3> |