diff options
author | Michele Calgaro <[email protected]> | 2024-10-15 13:05:33 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-10-22 10:05:58 +0900 |
commit | 397b7afa8e3f32268c4454bf4783ac2a5a799658 (patch) | |
tree | 0b41c33e457556bd2b9371788ddbce25263f00d6 /doc/html/scribble-example.html | |
parent | 755d46927cc6a5719e695aeb8133be6897de62d8 (diff) | |
download | tqt3-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.html | 16 |
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 <<a href="qapplication-h.html">ntqapplication.h</a>> +#include <<a href="tqapplication-h.html">tqapplication.h</a>> #include <<a href="tqevent-h.html">tqevent.h</a>> #include <<a href="tqpainter-h.html">tqpainter.h</a>> #include <<a href="tqtoolbar-h.html">tqtoolbar.h</a>> @@ -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-><a href="ntqapplication.html#argc">argc</a>() > 0) && !buffer.load(tqApp-><a href="ntqapplication.html#argv">argv</a>()[1])) +<a name="x907"></a><a name="x906"></a> if ((tqApp-><a href="tqapplication.html#argc">argc</a>() > 0) && !buffer.load(tqApp-><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 <<a href="qapplication-h.html">ntqapplication.h</a>> +#include <<a href="tqapplication-h.html">tqapplication.h</a>> 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>( &scribble ); -<a name="x954"></a> if ( TQApplication::<a href="ntqapplication.html#desktop">desktop</a>()->width() > 550 - && TQApplication::<a href="ntqapplication.html#desktop">desktop</a>()->height() > 366 ) + a.<a href="tqapplication.html#setMainWidget">setMainWidget</a>( &scribble ); +<a name="x954"></a> if ( TQApplication::<a href="tqapplication.html#desktop">desktop</a>()->width() > 550 + && TQApplication::<a href="tqapplication.html#desktop">desktop</a>()->height() > 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> |