summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqobject.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/ntqobject.html')
-rw-r--r--doc/html/ntqobject.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/ntqobject.html b/doc/html/ntqobject.html
index a146ae64..d5d23adf 100644
--- a/doc/html/ntqobject.html
+++ b/doc/html/ntqobject.html
@@ -111,7 +111,7 @@ body { background: #ffffff; color: black; }
</ul>
<h2>Related Functions</h2>
<ul>
-<li class=fn>void * <a href="#qt_find_obj_child"><b>qt_find_obj_child</b></a> ( TQObject&nbsp;*&nbsp;parent, const&nbsp;char&nbsp;*&nbsp;type, const&nbsp;char&nbsp;*&nbsp;name )</li>
+<li class=fn>void * <a href="#qt_find_obj_child"><b>tqt_find_obj_child</b></a> ( TQObject&nbsp;*&nbsp;parent, const&nbsp;char&nbsp;*&nbsp;type, const&nbsp;char&nbsp;*&nbsp;name )</li>
</ul>
<hr><a name="details"></a><h2>Detailed Description</h2>
@@ -932,13 +932,13 @@ for unnamed objects, you can call name( 0 ).
<p>Set this property's value with <a href="#setName">setName</a>() and get this property's value with <a href="#name">name</a>().
<hr><h2>Related Functions</h2>
-<h3 class=fn>void * <a name="qt_find_obj_child"></a>qt_find_obj_child ( <a href="ntqobject.html">TQObject</a>&nbsp;*&nbsp;parent, const&nbsp;char&nbsp;*&nbsp;type, const&nbsp;char&nbsp;*&nbsp;name )
+<h3 class=fn>void * <a name="qt_find_obj_child"></a>tqt_find_obj_child ( <a href="ntqobject.html">TQObject</a>&nbsp;*&nbsp;parent, const&nbsp;char&nbsp;*&nbsp;type, const&nbsp;char&nbsp;*&nbsp;name )
</h3>
<p> Returns a pointer to the object named <em>name</em> that inherits <em>type</em> and with a given <em>parent</em>.
<p> Returns 0 if there is no such child.
<p> <pre>
- <a href="ntqlistbox.html">TQListBox</a> *c = (TQListBox *) <a href="#qt_find_obj_child">qt_find_obj_child</a>( myWidget, "TQListBox",
+ <a href="ntqlistbox.html">TQListBox</a> *c = (TQListBox *) <a href="#qt_find_obj_child">tqt_find_obj_child</a>( myWidget, "TQListBox",
"my list box" );
if ( c )
c-&gt;<a href="ntqlistbox.html#insertItem">insertItem</a>( "another string" );