diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-23 14:04:45 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-27 16:08:54 +0900 |
commit | 04913ce7a46fd027856e83a96205fdc388742a19 (patch) | |
tree | a04a117317c14854a6b91072658ba0eb3ad8b3fc /doc/html/qaxserver-example-hierarchy.html | |
parent | c11c0f228b65f7471a26513ef8dbde413e75f8fa (diff) | |
download | tqt-04913ce7.tar.gz tqt-04913ce7.zip |
Rename ntqobject*.h and qobject*.cpp to tqobject*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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>(); } |