diff options
Diffstat (limited to 'doc/html/tutorial1-01.html')
-rw-r--r-- | doc/html/tutorial1-01.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/tutorial1-01.html b/doc/html/tutorial1-01.html index 9542b18e5..8edf315ca 100644 --- a/doc/html/tutorial1-01.html +++ b/doc/html/tutorial1-01.html @@ -43,14 +43,14 @@ The picture above is a snapshot of this program. ****************************************************************/ #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>> int main( int argc, char **argv ) { <a href="ntqapplication.html">TQApplication</a> a( argc, argv ); - <a href="ntqpushbutton.html">TQPushButton</a> hello( "Hello world!", 0 ); + <a href="tqpushbutton.html">TQPushButton</a> hello( "Hello world!", 0 ); hello.<a href="tqwidget.html#resize">resize</a>( 100, 30 ); a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &hello ); @@ -69,9 +69,9 @@ int main( int argc, char **argv ) exactly one TQApplication object in every application that uses TQt. TQApplication manages various application-wide resources, such as the default font and cursor. -<p> <pre> #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> +<p> <pre> #include <<a href="tqpushbutton-h.html">tqpushbutton.h</a>> </pre> -<p> This line includes the <a href="ntqpushbutton.html">TQPushButton</a> class definition. The +<p> This line includes the <a href="tqpushbutton.html">TQPushButton</a> class definition. The <a href="hierarchy.html">reference documentation</a> for each class mentions at the top which file needs to be included to use that class. <p> TQPushButton is a classical GUI push button that the user can press @@ -99,7 +99,7 @@ Note that all command-line arguments recognized by TQt are removed from <tt>argv</tt> (and <tt>argc</tt> is decremented accordingly). See the <a href="ntqapplication.html#argv">TQApplication::argv</a>() documentation for details. <p> <strong>Note:</strong> It is essential that the TQApplication object be created before any window-system parts of TQt are used. -<p> <pre> <a href="ntqpushbutton.html">TQPushButton</a> hello( "Hello world!", 0 ); +<p> <pre> <a href="tqpushbutton.html">TQPushButton</a> hello( "Hello world!", 0 ); </pre> <p> Here, <em>after</em> the TQApplication, comes the first window-system code: A push button is created. |