summaryrefslogtreecommitdiffstats
path: root/doc/html/forever-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-10-15 13:05:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-10-22 10:05:58 +0900
commit397b7afa8e3f32268c4454bf4783ac2a5a799658 (patch)
tree0b41c33e457556bd2b9371788ddbce25263f00d6 /doc/html/forever-example.html
parent755d46927cc6a5719e695aeb8133be6897de62d8 (diff)
downloadtqt3-397b7afa8e3f32268c4454bf4783ac2a5a799658.tar.gz
tqt3-397b7afa8e3f32268c4454bf4783ac2a5a799658.zip
Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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>