summaryrefslogtreecommitdiffstats
path: root/doc/html/tqaction-application-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqaction-application-example.html')
-rw-r--r--doc/html/tqaction-application-example.html12
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 &lt;<a href="tqstatusbar-h.html">tqstatusbar.h</a>&gt;
#include &lt;<a href="tqmessagebox-h.html">tqmessagebox.h</a>&gt;
#include &lt;<a href="tqprinter-h.html">tqprinter.h</a>&gt;
-#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
+#include &lt;<a href="tqapplication-h.html">tqapplication.h</a>&gt;
#include &lt;<a href="tqaccel-h.html">tqaccel.h</a>&gt;
#include &lt;<a href="tqtextstream-h.html">tqtextstream.h</a>&gt;
#include &lt;<a href="tqpainter-h.html">tqpainter.h</a>&gt;
@@ -189,7 +189,7 @@ private:
fileQuitAction = new <a href="tqaction.html">TQAction</a>( "Quit", "&amp;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 &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
+#include &lt;<a href="tqapplication-h.html">tqapplication.h</a>&gt;
#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-&gt;<a href="tqwidget.html#setCaption">setCaption</a>( "Document 1" );
<a name="x1178"></a> mw-&gt;<a href="tqwidget.html#show">show</a>();
-<a name="x1179"></a> a.<a href="tqobject.html#connect">connect</a>( &amp;a, TQ_SIGNAL(<a href="ntqapplication.html#lastWindowClosed">lastWindowClosed</a>()), &amp;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>( &amp;a, TQ_SIGNAL(<a href="tqapplication.html#lastWindowClosed">lastWindowClosed</a>()), &amp;a, TQ_SLOT(<a href="tqapplication.html#quit">quit</a>()) );
+ return a.<a href="tqapplication.html#exec">exec</a>();
}
</pre>