diff options
Diffstat (limited to 'doc/html/qaxserver-example-hierarchy.html')
-rw-r--r-- | doc/html/qaxserver-example-hierarchy.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/qaxserver-example-hierarchy.html b/doc/html/qaxserver-example-hierarchy.html index 80b3a1ee1..de5115c16 100644 --- a/doc/html/qaxserver-example-hierarchy.html +++ b/doc/html/qaxserver-example-hierarchy.html @@ -76,9 +76,9 @@ the name provided in the parameter, and sets the label to that name. The widget is also shown explicitly. <p> <pre> TQSubWidget *TQParentWidget::subWidget( const <a href="ntqstring.html">TQString</a> &name ) { - return (TQSubWidget*)<a href="ntqobject.html#child">child</a>( name, "TQSubWidget" ); + return (TQSubWidget*)<a href="tqobject.html#child">child</a>( name, "TQSubWidget" ); } -</pre>The <tt>subWidget</tt> slot uses the <a href="ntqobject.html#child">TQObject::child</a>() function and +</pre>The <tt>subWidget</tt> slot uses the <a href="tqobject.html#child">TQObject::child</a>() function and returns the first child of type <tt>TQSubWidget</tt> that has the requested name. <p> @@ -113,7 +113,7 @@ and implements the paintEvent to draw the label. void TQSubWidget::setLabel( const <a href="ntqstring.html">TQString</a> &text ) { lbl = text; - <a href="ntqobject.html#setName">setName</a>( text ); + <a href="tqobject.html#setName">setName</a>( text ); <a href="ntqwidget.html#update">update</a>(); } |