summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial1-04.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tutorial1-04.html')
-rw-r--r--doc/html/tutorial1-04.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tutorial1-04.html b/doc/html/tutorial1-04.html
index afe97744e..fc23a6f94 100644
--- a/doc/html/tutorial1-04.html
+++ b/doc/html/tutorial1-04.html
@@ -63,7 +63,7 @@ public:
quit-&gt;<a href="ntqwidget.html#setGeometry">setGeometry</a>( 62, 40, 75, 30 );
quit-&gt;<a href="ntqwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) );
- <a href="ntqobject.html#connect">connect</a>( quit, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) );
+ <a href="tqobject.html#connect">connect</a>( quit, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) );
}
@@ -101,8 +101,8 @@ you specify a null pointer as the parent. As you can see, this widget
defaults to be a top-level window.
<p> The second argument is the widget's name. This is <em>not</em> the text
that appears in the window's title bar or in the button. It is a name
-associated with a widget to make it possible to <a href="ntqobject.html#queryList">look up</a> this widget later, and there is
-also a <a href="ntqobject.html#dumpObjectTree">handy debugging function</a> that will list a complete widget hierarchy.
+associated with a widget to make it possible to <a href="tqobject.html#queryList">look up</a> this widget later, and there is
+also a <a href="tqobject.html#dumpObjectTree">handy debugging function</a> that will list a complete widget hierarchy.
<p> <pre> MyWidget::MyWidget( <a href="ntqwidget.html">TQWidget</a> *parent, const char *name )
: <a href="ntqwidget.html">TQWidget</a>( parent, name )
</pre>
@@ -132,7 +132,7 @@ when you choose to, the child will automatically tell TQt about its
imminent death.)
<p> The setGeometry() call does the same as move() and resize() did in the
previous chapters.
-<p> <pre> <a name="x2306"></a><a name="x2304"></a> <a href="ntqobject.html#connect">connect</a>( quit, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) );
+<p> <pre> <a name="x2306"></a><a name="x2304"></a> <a href="tqobject.html#connect">connect</a>( quit, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) );
}
</pre>
<p> Because the MyWidget class doesn't know about the application object, it