summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial1-03.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tutorial1-03.html')
-rw-r--r--doc/html/tutorial1-03.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tutorial1-03.html b/doc/html/tutorial1-03.html
index bdd050a75..cbd73786c 100644
--- a/doc/html/tutorial1-03.html
+++ b/doc/html/tutorial1-03.html
@@ -42,7 +42,7 @@ body { background: #ffffff; color: black; }
****************************************************************/
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
-#include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
+#include &lt;<a href="tqpushbutton-h.html">tqpushbutton.h</a>&gt;
#include &lt;<a href="tqfont-h.html">tqfont.h</a>&gt;
#include &lt;<a href="qvbox-h.html">ntqvbox.h</a>&gt;
@@ -53,7 +53,7 @@ int main( int argc, char **argv )
<a href="ntqvbox.html">TQVBox</a> box;
box.<a href="tqwidget.html#resize">resize</a>( 200, 120 );
- <a href="ntqpushbutton.html">TQPushButton</a> quit( "Quit", &amp;box );
+ <a href="tqpushbutton.html">TQPushButton</a> quit( "Quit", &amp;box );
quit.<a href="tqwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) );
TQObject::<a href="tqobject.html#connect">connect</a>( &amp;quit, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), &amp;a, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) );
@@ -80,10 +80,10 @@ space according to each child's <a href="tqwidget.html#sizePolicy">TQWidget::siz
<p> <pre> <a name="x2300"></a> box.<a href="tqwidget.html#resize">resize</a>( 200, 120 );
</pre>
<p> We set its width to 200 pixels and the height to 120 pixels.
-<p> <pre> <a href="ntqpushbutton.html">TQPushButton</a> quit( "Quit", &amp;box );
+<p> <pre> <a href="tqpushbutton.html">TQPushButton</a> quit( "Quit", &amp;box );
</pre>
<p> A child is born.
-<p> This <a href="ntqpushbutton.html">TQPushButton</a> is created with both a text ("Quit") and a parent
+<p> This <a href="tqpushbutton.html">TQPushButton</a> is created with both a text ("Quit") and a parent
(box). A child widget is always on top of its parent. When
displayed, it is clipped by its parent's bounds.
<p> The parent widget, the TQVBox, automatically adds the child centered in