diff options
Diffstat (limited to 'doc/html/tutorial1-03.html')
-rw-r--r-- | doc/html/tutorial1-03.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/tutorial1-03.html b/doc/html/tutorial1-03.html index 714fce724..16a6bbc30 100644 --- a/doc/html/tutorial1-03.html +++ b/doc/html/tutorial1-03.html @@ -44,13 +44,13 @@ body { background: #ffffff; color: black; } #include <<a href="qapplication-h.html">ntqapplication.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>> +#include <<a href="tqvbox-h.html">tqvbox.h</a>> int main( int argc, char **argv ) { <a href="ntqapplication.html">TQApplication</a> a( argc, argv ); - <a href="ntqvbox.html">TQVBox</a> box; + <a href="tqvbox.html">TQVBox</a> box; box.<a href="tqwidget.html#resize">resize</a>( 200, 120 ); <a href="tqpushbutton.html">TQPushButton</a> quit( "Quit", &box ); @@ -69,12 +69,12 @@ int main( int argc, char **argv ) <p> <h2> Line-by-line Walkthrough </h2> -<a name="1"></a><p> <pre> #include <<a href="qvbox-h.html">ntqvbox.h</a>> +<a name="1"></a><p> <pre> #include <<a href="tqvbox-h.html">tqvbox.h</a>> </pre> -<p> We add an include of ntqvbox.h to get the layout class we'll use. -<p> <pre> <a href="ntqvbox.html">TQVBox</a> box; +<p> We add an include of tqvbox.h to get the layout class we'll use. +<p> <pre> <a href="tqvbox.html">TQVBox</a> box; </pre> -<p> Here we simply create a vertical box container. The <a href="ntqvbox.html">TQVBox</a> arranges +<p> Here we simply create a vertical box container. The <a href="tqvbox.html">TQVBox</a> arranges its child widgets in a vertical row, one above the other, handing out space according to each child's <a href="tqwidget.html#sizePolicy">TQWidget::sizePolicy</a>(). <p> <pre> <a name="x2300"></a> box.<a href="tqwidget.html#resize">resize</a>( 200, 120 ); |