diff options
Diffstat (limited to 'doc/html/tutorial1-06.html')
-rw-r--r-- | doc/html/tutorial1-06.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/tutorial1-06.html b/doc/html/tutorial1-06.html index 58daffe70..f8fcf8fb7 100644 --- a/doc/html/tutorial1-06.html +++ b/doc/html/tutorial1-06.html @@ -49,7 +49,7 @@ widget as a child widget. #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="qgrid-h.html">ntqgrid.h</a>> +#include <<a href="tqgrid-h.html">tqgrid.h</a>> class LCDRange : public <a href="ntqvbox.html">TQVBox</a> { @@ -80,9 +80,9 @@ public: <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 ) ); - <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>()) ); + <a href="tqobject.html#connect">connect</a>( quit, TQ_SIGNAL(<a href="tqbutton.html#clicked">clicked</a>()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) ); - <a href="ntqgrid.html">TQGrid</a> *grid = new <a href="ntqgrid.html">TQGrid</a>( 4, this ); + <a href="tqgrid.html">TQGrid</a> *grid = new <a href="tqgrid.html">TQGrid</a>( 4, this ); for( int r = 0 ; r < 4 ; r++ ) for( int c = 0 ; c < 4 ; c++ ) @@ -139,14 +139,14 @@ is renamed. <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 ) ); - <a name="x2321"></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>()) ); + <a name="x2321"></a> <a href="tqobject.html#connect">connect</a>( quit, TQ_SIGNAL(<a href="tqbutton.html#clicked">clicked</a>()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) ); </pre> <p> The push button that used to be in what is now LCDRange has been separated so that we can have one "Quit" button and many LCDRange objects. -<p> <pre> <a href="ntqgrid.html">TQGrid</a> *grid = new <a href="ntqgrid.html">TQGrid</a>( 4, this ); +<p> <pre> <a href="tqgrid.html">TQGrid</a> *grid = new <a href="tqgrid.html">TQGrid</a>( 4, this ); </pre> -<p> We create a <a href="ntqgrid.html">TQGrid</a> object with four columns. The TQGRid widget +<p> We create a <a href="tqgrid.html">TQGrid</a> object with four columns. The TQGrid widget automatically arranges its children in rows and columns; you can specify the number of rows or of columns, and TQGrid will discover its new children and fit them into the grid. @@ -171,7 +171,7 @@ makefile and build the application.) </h2> <a name="3"></a><p> Initialize each slider with a different/random value on startup. <p> The source contains three occurrences of "4". What happens if you -change the one in the <a href="ntqgrid.html">TQGrid</a> constructor call? What about the other +change the one in the <a href="tqgrid.html">TQGrid</a> constructor call? What about the other two? Why is this? <p> You're now ready for <a href="tutorial1-07.html">Chapter 7.</a> <p> [<a href="tutorial1-05.html">Previous tutorial</a>] |