summaryrefslogtreecommitdiffstats
path: root/doc/html/tqobject.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqobject.html')
-rw-r--r--doc/html/tqobject.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tqobject.html b/doc/html/tqobject.html
index 294fc0f79..525c24baf 100644
--- a/doc/html/tqobject.html
+++ b/doc/html/tqobject.html
@@ -312,7 +312,7 @@ label, TQ_SLOT(setNum(int v)) );
MyWidget::MyWidget()
{
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()) );
+ <a href="#connect">connect</a>( aButton, TQ_SIGNAL(<a href="tqbutton.html#clicked">clicked</a>()), TQ_SIGNAL(myUsefulSignal()) );
}
</pre>
@@ -629,7 +629,7 @@ monitored objects:
<pre>
KeyPressEater *keyPressEater = new KeyPressEater( 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 );
+ <a href="tqlistview.html">TQListView</a> *listView = new <a href="tqlistview.html">TQListView</a>( this );
pushButton-&gt;<a href="#installEventFilter">installEventFilter</a>( keyPressEater );
listView-&gt;<a href="#installEventFilter">installEventFilter</a>( keyPressEater );
@@ -936,10 +936,10 @@ for unnamed objects, you can call name( 0 ).
<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">tqt_find_obj_child</a>( myWidget, "TQListBox",
+ <a href="tqlistbox.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" );
+ c-&gt;<a href="tqlistbox.html#insertItem">insertItem</a>( "another string" );
</pre>