diff options
Diffstat (limited to 'doc/html/tqaction-application-example.html')
-rw-r--r-- | doc/html/tqaction-application-example.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/tqaction-application-example.html b/doc/html/tqaction-application-example.html index 49560af19..42968e34f 100644 --- a/doc/html/tqaction-application-example.html +++ b/doc/html/tqaction-application-example.html @@ -115,7 +115,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>> @@ -189,7 +189,7 @@ private: fileQuitAction = new <a href="tqaction.html">TQAction</a>( "Quit", "&Quit", CTRL+Key_Q, this, "quit" ); <a name="x1127"></a> <a href="tqobject.html#connect">connect</a>( fileQuitAction, TQ_SIGNAL( <a href="tqaction.html#activated">activated</a>() ) , tqApp, - TQ_SLOT( <a href="ntqapplication.html#closeAllWindows">closeAllWindows</a>() ) ); + TQ_SLOT( <a href="tqapplication.html#closeAllWindows">closeAllWindows</a>() ) ); // populate a tool bar with some actions @@ -412,16 +412,16 @@ void <a name="f383"></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>( "Document 1" ); <a name="x1178"></a> mw-><a href="tqwidget.html#show">show</a>(); -<a name="x1179"></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="x1179"></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> |