summaryrefslogtreecommitdiffstats
path: root/doc/html/forever-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/forever-example.html')
-rw-r--r--doc/html/forever-example.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/forever-example.html b/doc/html/forever-example.html
index 10bfa67c0..3e8a3420c 100644
--- a/doc/html/forever-example.html
+++ b/doc/html/forever-example.html
@@ -93,7 +93,7 @@ private:
#include &lt;<a href="tqtimer-h.html">tqtimer.h</a>&gt;
#include &lt;<a href="tqpainter-h.html">tqpainter.h</a>&gt;
-#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
+#include &lt;<a href="tqapplication-h.html">tqapplication.h</a>&gt;
#include &lt;stdlib.h&gt; // defines rand() function
#include "forever.h"
@@ -173,13 +173,13 @@ void <a name="f366"></a>Forever::updateCaption()
int main( int argc, char **argv )
{
- <a href="ntqapplication.html">TQApplication</a> a( argc, argv ); // create application object
+ <a href="tqapplication.html">TQApplication</a> a( argc, argv ); // create application object
Forever always; // create widget
always.<a href="tqwidget.html#resize">resize</a>( 400, 250 ); // start up with size 400x250
- a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &amp;always ); // set as main widget
+ a.<a href="tqapplication.html#setMainWidget">setMainWidget</a>( &amp;always ); // set as main widget
always.<a href="tqwidget.html#setCaption">setCaption</a>("TQt Example - Forever");
always.<a href="tqwidget.html#show">show</a>(); // show widget
- return a.<a href="ntqapplication.html#exec">exec</a>(); // run event loop
+ return a.<a href="tqapplication.html#exec">exec</a>(); // run event loop
}
</pre>