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/t14-gamebrd-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/t14-gamebrd-cpp.html')
-rw-r--r-- | doc/html/t14-gamebrd-cpp.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/t14-gamebrd-cpp.html b/doc/html/t14-gamebrd-cpp.html index c6a8a1e86..1186c66af 100644 --- a/doc/html/t14-gamebrd-cpp.html +++ b/doc/html/t14-gamebrd-cpp.html @@ -40,7 +40,7 @@ body { background: #ffffff; color: black; } #include "gamebrd.h" #include <<a href="tqfont-h.html">tqfont.h</a>> -#include <<a href="qapplication-h.html">ntqapplication.h</a>> +#include <<a href="tqapplication-h.html">tqapplication.h</a>> #include <<a href="tqlabel-h.html">tqlabel.h</a>> #include <<a href="tqaccel-h.html">tqaccel.h</a>> #include <<a href="tqpushbutton-h.html">tqpushbutton.h</a>> @@ -57,7 +57,7 @@ body { background: #ffffff; color: black; } <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( "ANGLE", this, "angle" ); angle->setRange( 5, 70 ); @@ -111,7 +111,7 @@ body { background: #ffffff; color: black; } accel-><a href="tqaccel.html#connectItem">connectItem</a>( accel-><a href="tqaccel.html#insertItem">insertItem</a>( Key_Return ), this, TQ_SLOT(fire()) ); accel-><a href="tqaccel.html#connectItem">connectItem</a>( accel-><a href="tqaccel.html#insertItem">insertItem</a>( CTRL+Key_Q ), - tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) ); + tqApp, TQ_SLOT(<a href="tqapplication.html#quit">quit</a>()) ); <a href="tqgridlayout.html">TQGridLayout</a> *grid = new <a href="tqgridlayout.html">TQGridLayout</a>( this, 2, 2, 10 ); grid-><a href="tqgridlayout.html#addWidget">addWidget</a>( quit, 0, 0 ); |