summaryrefslogtreecommitdiffstats
path: root/doc/html/scribble-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-10-15 13:05:33 +0900
committerMichele Calgaro <[email protected]>2024-10-22 10:05:58 +0900
commit397b7afa8e3f32268c4454bf4783ac2a5a799658 (patch)
tree0b41c33e457556bd2b9371788ddbce25263f00d6 /doc/html/scribble-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 <[email protected]>
Diffstat (limited to 'doc/html/scribble-example.html')
-rw-r--r--doc/html/scribble-example.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/scribble-example.html b/doc/html/scribble-example.html
index 3c5ec5689..a82937778 100644
--- a/doc/html/scribble-example.html
+++ b/doc/html/scribble-example.html
@@ -140,7 +140,7 @@ protected slots:
#include "scribble.h"
-#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
+#include &lt;<a href="tqapplication-h.html">tqapplication.h</a>&gt;
#include &lt;<a href="tqevent-h.html">tqevent.h</a>&gt;
#include &lt;<a href="tqpainter-h.html">tqpainter.h</a>&gt;
#include &lt;<a href="tqtoolbar-h.html">tqtoolbar.h</a>&gt;
@@ -164,7 +164,7 @@ const bool no_writing = FALSE;
mousePressed( FALSE ), buffer( <a href="tqwidget.html#width">width</a>(), height() )
{
-<a name="x907"></a><a name="x906"></a> if ((tqApp-&gt;<a href="ntqapplication.html#argc">argc</a>() &gt; 0) &amp;&amp; !buffer.load(tqApp-&gt;<a href="ntqapplication.html#argv">argv</a>()[1]))
+<a name="x907"></a><a name="x906"></a> if ((tqApp-&gt;<a href="tqapplication.html#argc">argc</a>() &gt; 0) &amp;&amp; !buffer.load(tqApp-&gt;<a href="tqapplication.html#argv">argv</a>()[1]))
buffer.fill( <a href="tqwidget.html#colorGroup">colorGroup</a>().base() );
<a href="tqwidget.html#setBackgroundMode">setBackgroundMode</a>( TQWidget::PaletteBase );
#ifndef TQT_NO_CURSOR
@@ -331,24 +331,24 @@ void <a name="f345"></a>Scribble::slotClear()
*****************************************************************************/
#include "scribble.h"
-#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
+#include &lt;<a href="tqapplication-h.html">tqapplication.h</a>&gt;
int main( int argc, char **argv )
{
- <a href="ntqapplication.html">TQApplication</a> a( argc, argv );
+ <a href="tqapplication.html">TQApplication</a> a( argc, argv );
Scribble scribble;
scribble.<a href="tqwidget.html#resize">resize</a>( 500, 350 );
scribble.<a href="tqwidget.html#setCaption">setCaption</a>("TQt Example - Scribble");
- a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &amp;scribble );
-<a name="x954"></a> if ( TQApplication::<a href="ntqapplication.html#desktop">desktop</a>()-&gt;width() &gt; 550
- &amp;&amp; TQApplication::<a href="ntqapplication.html#desktop">desktop</a>()-&gt;height() &gt; 366 )
+ a.<a href="tqapplication.html#setMainWidget">setMainWidget</a>( &amp;scribble );
+<a name="x954"></a> if ( TQApplication::<a href="tqapplication.html#desktop">desktop</a>()-&gt;width() &gt; 550
+ &amp;&amp; TQApplication::<a href="tqapplication.html#desktop">desktop</a>()-&gt;height() &gt; 366 )
scribble.<a href="tqwidget.html#show">show</a>();
else
<a name="x960"></a> scribble.<a href="tqwidget.html#showMaximized">showMaximized</a>();
- return a.<a href="ntqapplication.html#exec">exec</a>();
+ return a.<a href="tqapplication.html#exec">exec</a>();
}
</pre>