summaryrefslogtreecommitdiffstats
path: root/doc/html/tutorial1-02.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tutorial1-02.html')
-rw-r--r--doc/html/tutorial1-02.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tutorial1-02.html b/doc/html/tutorial1-02.html
index cf2792e4b..a35de0e75 100644
--- a/doc/html/tutorial1-02.html
+++ b/doc/html/tutorial1-02.html
@@ -43,7 +43,7 @@ now go on to make the application quit properly when the user tells it to.
****************************************************************/
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
-#include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
+#include &lt;<a href="tqpushbutton-h.html">tqpushbutton.h</a>&gt;
#include &lt;<a href="tqfont-h.html">tqfont.h</a>&gt;
@@ -51,7 +51,7 @@ int main( int argc, char **argv )
{
<a href="ntqapplication.html">TQApplication</a> a( argc, argv );
- <a href="ntqpushbutton.html">TQPushButton</a> quit( "Quit", 0 );
+ <a href="tqpushbutton.html">TQPushButton</a> quit( "Quit", 0 );
quit.<a href="tqwidget.html#resize">resize</a>( 75, 30 );
quit.<a href="tqwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) );
@@ -72,7 +72,7 @@ int main( int argc, char **argv )
<p> Since this program uses <a href="tqfont.html">TQFont</a>, it needs to include tqfont.h. TQt's font
abstraction is rather different from the horror provided by X, and
loading and using fonts has been highly optimized.
-<p> <pre> <a href="ntqpushbutton.html">TQPushButton</a> quit( "Quit", 0 );
+<p> <pre> <a href="tqpushbutton.html">TQPushButton</a> quit( "Quit", 0 );
</pre>
<p> This time, the button says "Quit" and that's exactly what the program
will do when the user clicks the button. This is not a coincidence.
@@ -111,7 +111,7 @@ makefile and build the application.)
</h2>
<a name="3"></a><p> Try to resize the window. Press the button. Oops! That connect()
would seem to make some difference.
-<p> Are there any other signals in <a href="ntqpushbutton.html">TQPushButton</a> you can connect to quit?
+<p> Are there any other signals in <a href="tqpushbutton.html">TQPushButton</a> you can connect to quit?
Hint: The TQPushButton inherits most of its behavior from <a href="ntqbutton.html">TQButton</a>.
<p> You're now ready for <a href="tutorial1-03.html">Chapter 3.</a>
<p> [<a href="tutorial1-01.html">Previous tutorial</a>]