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/t11-main-cpp.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/t11-main-cpp.html')
-rw-r--r-- | doc/html/t11-main-cpp.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/t11-main-cpp.html b/doc/html/t11-main-cpp.html index 735afb93f..4d1432f8b 100644 --- a/doc/html/t11-main-cpp.html +++ b/doc/html/t11-main-cpp.html @@ -37,7 +37,7 @@ body { background: #ffffff; color: black; } ** ****************************************************************/ -#include <<a href="qapplication-h.html">ntqapplication.h</a>> +#include <<a href="tqapplication-h.html">tqapplication.h</a>> #include <<a href="tqpushbutton-h.html">tqpushbutton.h</a>> #include <<a href="tqlcdnumber-h.html">tqlcdnumber.h</a>> #include <<a href="tqfont-h.html">tqfont.h</a>> @@ -60,7 +60,7 @@ public: <a href="tqpushbutton.html">TQPushButton</a> *quit = new <a href="tqpushbutton.html">TQPushButton</a>( "&Quit", this, "quit" ); quit-><a href="tqwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) ); - <a href="tqobject.html#connect">connect</a>( quit, TQ_SIGNAL(<a href="tqbutton.html#clicked">clicked</a>()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) ); + <a href="tqobject.html#connect">connect</a>( quit, TQ_SIGNAL(<a href="tqbutton.html#clicked">clicked</a>()), tqApp, TQ_SLOT(<a href="tqapplication.html#quit">quit</a>()) ); LCDRange *angle = new LCDRange( this, "angle" ); angle->setRange( 5, 70 ); @@ -107,14 +107,14 @@ public: int main( int argc, char **argv ) { - TQApplication::<a href="ntqapplication.html#setColorSpec">setColorSpec</a>( TQApplication::CustomColor ); - <a href="ntqapplication.html">TQApplication</a> a( argc, argv ); + TQApplication::<a href="tqapplication.html#setColorSpec">setColorSpec</a>( TQApplication::CustomColor ); + <a href="tqapplication.html">TQApplication</a> a( argc, argv ); MyWidget w; w.<a href="tqwidget.html#setGeometry">setGeometry</a>( 100, 100, 500, 355 ); - a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &w ); + a.<a href="tqapplication.html#setMainWidget">setMainWidget</a>( &w ); w.<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><!-- eof --> <p><address><hr><div align=center> |