diff options
Diffstat (limited to 'doc/html/tutorial1-03.html')
-rw-r--r-- | doc/html/tutorial1-03.html | 8 |
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 <<a href="qapplication-h.html">ntqapplication.h</a>> -#include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> +#include <<a href="tqpushbutton-h.html">tqpushbutton.h</a>> #include <<a href="tqfont-h.html">tqfont.h</a>> #include <<a href="qvbox-h.html">ntqvbox.h</a>> @@ -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", &box ); + <a href="tqpushbutton.html">TQPushButton</a> quit( "Quit", &box ); quit.<a href="tqwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) ); TQObject::<a href="tqobject.html#connect">connect</a>( &quit, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), &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", &box ); +<p> <pre> <a href="tqpushbutton.html">TQPushButton</a> quit( "Quit", &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 |