diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-15 13:05:33 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-22 10:05:58 +0900 |
commit | 397b7afa8e3f32268c4454bf4783ac2a5a799658 (patch) | |
tree | 0b41c33e457556bd2b9371788ddbce25263f00d6 /doc/html/richtext-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 <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/richtext-example.html')
-rw-r--r-- | doc/html/richtext-example.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/richtext-example.html b/doc/html/richtext-example.html index d0ad7de19..311f415bb 100644 --- a/doc/html/richtext-example.html +++ b/doc/html/richtext-example.html @@ -95,7 +95,7 @@ protected slots: #include <<a href="tqpushbutton-h.html">tqpushbutton.h</a>> #include <<a href="tqtextview-h.html">tqtextview.h</a>> #include <<a href="tqbrush-h.html">tqbrush.h</a>> -#include <<a href="qapplication-h.html">ntqapplication.h</a>> +#include <<a href="tqapplication-h.html">tqapplication.h</a>> static const char* sayings[] = { "<b>Saying 1:</b><br>" @@ -181,7 +181,7 @@ static const char* sayings[] = { <a name="x466"></a> bPrev-><a href="tqwidget.html#setEnabled">setEnabled</a>( FALSE ); -<a name="x462"></a> <a href="tqobject.html#connect">connect</a>( bClose, TQ_SIGNAL( <a href="tqbutton.html#clicked">clicked</a>() ), tqApp, TQ_SLOT( <a href="ntqapplication.html#quit">quit</a>() ) ); +<a name="x462"></a> <a href="tqobject.html#connect">connect</a>( bClose, TQ_SIGNAL( <a href="tqbutton.html#clicked">clicked</a>() ), tqApp, TQ_SLOT( <a href="tqapplication.html#quit">quit</a>() ) ); <a href="tqobject.html#connect">connect</a>( bPrev, TQ_SIGNAL( <a href="tqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( prev() ) ); <a href="tqobject.html#connect">connect</a>( bNext, TQ_SIGNAL( <a href="tqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( next() ) ); @@ -235,19 +235,19 @@ void <a name="f257"></a>MyRichText::next() *****************************************************************************/ #include "richtext.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 ); MyRichText richtext; richtext.<a href="tqwidget.html#resize">resize</a>( 450, 350 ); richtext.<a href="tqwidget.html#setCaption">setCaption</a>( "TQt Example - Richtext" ); - a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &richtext ); + a.<a href="tqapplication.html#setMainWidget">setMainWidget</a>( &richtext ); richtext.<a href="tqwidget.html#show">show</a>(); - return a.<a href="ntqapplication.html#exec">exec</a>(); + return a.<a href="tqapplication.html#exec">exec</a>(); } </pre> |