diff options
Diffstat (limited to 'doc/html/tutorial1-04.html')
-rw-r--r-- | doc/html/tutorial1-04.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tutorial1-04.html b/doc/html/tutorial1-04.html index c1d8ea2c4..2dffeb4e3 100644 --- a/doc/html/tutorial1-04.html +++ b/doc/html/tutorial1-04.html @@ -42,7 +42,7 @@ minimum and maximum sizes of a widget, and introduces widget names. ****************************************************************/ #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>> @@ -59,7 +59,7 @@ public: <a href="tqwidget.html#setMinimumSize">setMinimumSize</a>( 200, 120 ); <a href="tqwidget.html#setMaximumSize">setMaximumSize</a>( 200, 120 ); - <a href="ntqpushbutton.html">TQPushButton</a> *quit = new <a href="ntqpushbutton.html">TQPushButton</a>( "Quit", this, "quit" ); + <a href="tqpushbutton.html">TQPushButton</a> *quit = new <a href="tqpushbutton.html">TQPushButton</a>( "Quit", this, "quit" ); quit-><a href="tqwidget.html#setGeometry">setGeometry</a>( 62, 40, 75, 30 ); quit-><a href="tqwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) ); @@ -116,7 +116,7 @@ constructor. <p> Because this widget doesn't know how to handle resizing, we fix its size by setting the minimum and maximum to be equal. In the next chapter we will show how a widget can respond to resize event from the user. -<p> <pre> <a href="ntqpushbutton.html">TQPushButton</a> *quit = new <a href="ntqpushbutton.html">TQPushButton</a>( "Quit", this, "quit" ); +<p> <pre> <a href="tqpushbutton.html">TQPushButton</a> *quit = new <a href="tqpushbutton.html">TQPushButton</a>( "Quit", this, "quit" ); <a name="x2308"></a> quit-><a href="tqwidget.html#setGeometry">setGeometry</a>( 62, 40, 75, 30 ); <a name="x2307"></a> quit-><a href="tqwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) ); </pre> @@ -166,7 +166,7 @@ makefile and build the application.) <p> <h2> Exercises </h2> <a name="3"></a><p> Try to create another MyWidget object in main(). What happens? -<p> Try to add more buttons or put in widgets other than <a href="ntqpushbutton.html">TQPushButton</a>. +<p> Try to add more buttons or put in widgets other than <a href="tqpushbutton.html">TQPushButton</a>. <p> You're now ready for <a href="tutorial1-05.html">Chapter 5.</a> <p> [<a href="tutorial1-03.html">Previous tutorial</a>] [<a href="tutorial1-05.html">Next tutorial</a>] |