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/simple-application-example.html | |
| parent | 755d46927cc6a5719e695aeb8133be6897de62d8 (diff) | |
| download | tqt-397b7afa.tar.gz tqt-397b7afa.zip | |
Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/simple-application-example.html')
| -rw-r--r-- | doc/html/simple-application-example.html | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/doc/html/simple-application-example.html b/doc/html/simple-application-example.html index a5ba219a5..d8e2a0ae7 100644 --- a/doc/html/simple-application-example.html +++ b/doc/html/simple-application-example.html @@ -114,7 +114,7 @@ private:  #include <<a href="tqstatusbar-h.html">tqstatusbar.h</a>>  #include <<a href="tqmessagebox-h.html">tqmessagebox.h</a>>  #include <<a href="tqprinter-h.html">tqprinter.h</a>> -#include <<a href="qapplication-h.html">ntqapplication.h</a>> +#include <<a href="tqapplication-h.html">tqapplication.h</a>>  #include <<a href="tqaccel-h.html">tqaccel.h</a>>  #include <<a href="tqtextstream-h.html">tqtextstream.h</a>>  #include <<a href="tqpainter-h.html">tqpainter.h</a>> @@ -205,7 +205,7 @@ private:      file-><a href="tqmenudata.html#insertItem">insertItem</a>( "&Close", this, TQ_SLOT(<a href="tqwidget.html#close">close</a>()), CTRL+Key_W ); -<a name="x1544"></a>    file-><a href="tqmenudata.html#insertItem">insertItem</a>( "&Quit", tqApp, TQ_SLOT( <a href="ntqapplication.html#closeAllWindows">closeAllWindows</a>() ), CTRL+Key_Q ); +<a name="x1544"></a>    file-><a href="tqmenudata.html#insertItem">insertItem</a>( "&Quit", tqApp, TQ_SLOT( <a href="tqapplication.html#closeAllWindows">closeAllWindows</a>() ), CTRL+Key_Q );      <a href="tqmainwindow.html#menuBar">menuBar</a>()->insertSeparator(); @@ -399,16 +399,16 @@ void <a name="f467"></a>ApplicationWindow::aboutTQt()  **  *****************************************************************************/ -#include <<a href="qapplication-h.html">ntqapplication.h</a>> +#include <<a href="tqapplication-h.html">tqapplication.h</a>>  #include "application.h"  int main( int argc, char ** argv ) { -    <a href="ntqapplication.html">TQApplication</a> a( argc, argv ); +    <a href="tqapplication.html">TQApplication</a> a( argc, argv );      ApplicationWindow *mw = new ApplicationWindow();      mw-><a href="tqwidget.html#setCaption">setCaption</a>( "TQt Example - Application" );  <a name="x1598"></a>    mw-><a href="tqwidget.html#show">show</a>(); -<a name="x1599"></a>    a.<a href="tqobject.html#connect">connect</a>( &a, TQ_SIGNAL(<a href="ntqapplication.html#lastWindowClosed">lastWindowClosed</a>()), &a, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) ); -    return a.<a href="ntqapplication.html#exec">exec</a>(); +<a name="x1599"></a>    a.<a href="tqobject.html#connect">connect</a>( &a, TQ_SIGNAL(<a href="tqapplication.html#lastWindowClosed">lastWindowClosed</a>()), &a, TQ_SLOT(<a href="tqapplication.html#quit">quit</a>()) ); +    return a.<a href="tqapplication.html#exec">exec</a>();  }  </pre> | 
