diff options
Diffstat (limited to 'doc/html/tutorial1-06.html')
-rw-r--r-- | doc/html/tutorial1-06.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/tutorial1-06.html b/doc/html/tutorial1-06.html index f8fcf8fb7..a2e5c23a8 100644 --- a/doc/html/tutorial1-06.html +++ b/doc/html/tutorial1-06.html @@ -48,17 +48,17 @@ widget as a child widget. #include <<a href="tqslider-h.html">tqslider.h</a>> #include <<a href="tqlcdnumber-h.html">tqlcdnumber.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>> #include <<a href="tqgrid-h.html">tqgrid.h</a>> -class LCDRange : public <a href="ntqvbox.html">TQVBox</a> +class LCDRange : public <a href="tqvbox.html">TQVBox</a> { public: LCDRange( <a href="tqwidget.html">TQWidget</a> *parent=0, const char *name=0 ); }; <a name="f554"></a>LCDRange::LCDRange( <a href="tqwidget.html">TQWidget</a> *parent, const char *name ) - : <a href="ntqvbox.html">TQVBox</a>( parent, name ) + : <a href="tqvbox.html">TQVBox</a>( parent, name ) { <a href="tqlcdnumber.html">TQLCDNumber</a> *lcd = new <a href="tqlcdnumber.html">TQLCDNumber</a>( 2, this, "lcd" ); <a href="tqslider.html">TQSlider</a> * slider = new <a href="tqslider.html">TQSlider</a>( Horizontal, this, "slider" ); @@ -67,7 +67,7 @@ public: <a href="tqobject.html#connect">connect</a>( slider, TQ_SIGNAL(<a href="tqslider.html#valueChanged">valueChanged</a>(int)), lcd, TQ_SLOT(<a href="tqlcdnumber.html#display">display</a>(int)) ); } -class MyWidget : public <a href="ntqvbox.html">TQVBox</a> +class MyWidget : public <a href="tqvbox.html">TQVBox</a> { public: MyWidget( <a href="tqwidget.html">TQWidget</a> *parent=0, const char *name=0 ); @@ -75,7 +75,7 @@ public: <a name="f555"></a>MyWidget::MyWidget( <a href="tqwidget.html">TQWidget</a> *parent, const char *name ) - : <a href="ntqvbox.html">TQVBox</a>( parent, name ) + : <a href="tqvbox.html">TQVBox</a>( parent, name ) { <a href="tqpushbutton.html">TQPushButton</a> *quit = new <a href="tqpushbutton.html">TQPushButton</a>( "Quit", this, "quit" ); quit-><a href="tqwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) ); @@ -104,7 +104,7 @@ int main( int argc, char **argv ) <p> <h2> Line-by-line Walkthrough </h2> -<a name="1"></a><p> <pre> class LCDRange : public <a href="ntqvbox.html">TQVBox</a> +<a name="1"></a><p> <pre> class LCDRange : public <a href="tqvbox.html">TQVBox</a> { public: LCDRange( <a href="tqwidget.html">TQWidget</a> *parent=0, const char *name=0 ); @@ -113,7 +113,7 @@ int main( int argc, char **argv ) <p> The LCDRange widget is a widget without any API. It just has a constructor. This sort of widget is not very useful, so we'll add some API later. <p> <pre> LCDRange::LCDRange( <a href="tqwidget.html">TQWidget</a> *parent, const char *name ) - : <a href="ntqvbox.html">TQVBox</a>( parent, name ) + : <a href="tqvbox.html">TQVBox</a>( parent, name ) { <a href="tqlcdnumber.html">TQLCDNumber</a> *lcd = new <a href="tqlcdnumber.html">TQLCDNumber</a>( 2, this, "lcd" ); <a href="tqslider.html">TQSlider</a> * slider = new <a href="tqslider.html">TQSlider</a>( Horizontal, this, "slider" ); @@ -126,7 +126,7 @@ constructor. This sort of widget is not very useful, so we'll add some API later <a href="tutorial1-05.html#constructor">MyWidget constructor</a> in Chapter 5. The only differences are that the button is left out and the class is renamed. -<p> <pre> class MyWidget : public <a href="ntqvbox.html">TQVBox</a> +<p> <pre> class MyWidget : public <a href="tqvbox.html">TQVBox</a> { public: MyWidget( <a href="tqwidget.html">TQWidget</a> *parent=0, const char *name=0 ); @@ -134,7 +134,7 @@ is renamed. </pre> <p> MyWidget, too, contains no API except a constructor. <p> <pre> MyWidget::MyWidget( <a href="tqwidget.html">TQWidget</a> *parent, const char *name ) - : <a href="ntqvbox.html">TQVBox</a>( parent, name ) + : <a href="tqvbox.html">TQVBox</a>( parent, name ) { <a href="tqpushbutton.html">TQPushButton</a> *quit = new <a href="tqpushbutton.html">TQPushButton</a>( "Quit", this, "quit" ); <a name="x2328"></a> quit-><a href="tqwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) ); |