summaryrefslogtreecommitdiffstats
path: root/doc/html/addressbook-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/addressbook-example.html')
-rw-r--r--doc/html/addressbook-example.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/addressbook-example.html b/doc/html/addressbook-example.html
index 3866fc7b5..ce4807a53 100644
--- a/doc/html/addressbook-example.html
+++ b/doc/html/addressbook-example.html
@@ -108,7 +108,7 @@ protected:
#include &lt;<a href="tqpopupmenu-h.html">tqpopupmenu.h</a>&gt;
#include &lt;<a href="tqmenubar-h.html">tqmenubar.h</a>&gt;
#include &lt;<a href="tqstatusbar-h.html">tqstatusbar.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="tqfiledialog-h.html">tqfiledialog.h</a>&gt;
<a name="f263"></a>ABMainWindow::ABMainWindow()
@@ -140,7 +140,7 @@ void <a name="f264"></a>ABMainWindow::setupMenuBar()
file-&gt;<a href="tqmenudata.html#insertItem">insertItem</a>( TQPixmap( "fileprint.xpm" ), "Print...", this, TQ_SLOT( filePrint() ), CTRL + Key_P );
file-&gt;<a href="tqmenudata.html#insertSeparator">insertSeparator</a>();
file-&gt;<a href="tqmenudata.html#insertItem">insertItem</a>( "Close", this, TQ_SLOT( closeWindow() ), CTRL + Key_W );
- file-&gt;<a href="tqmenudata.html#insertItem">insertItem</a>( "Quit", tqApp, TQ_SLOT( <a href="ntqapplication.html#quit">quit</a>() ), CTRL + Key_Q );
+ file-&gt;<a href="tqmenudata.html#insertItem">insertItem</a>( "Quit", tqApp, TQ_SLOT( <a href="tqapplication.html#quit">quit</a>() ), CTRL + Key_Q );
}
void <a name="f265"></a>ABMainWindow::setupFileTools()
@@ -633,21 +633,21 @@ void <a name="f287"></a>ABCentralWidget::findEntries()
**
*****************************************************************************/
-#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
+#include &lt;<a href="tqapplication-h.html">tqapplication.h</a>&gt;
#include "mainwindow.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 );
ABMainWindow *mw = new ABMainWindow();
mw-&gt;<a href="tqwidget.html#setCaption">setCaption</a>( "TQt Example - Addressbook" );
- a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( mw );
+ a.<a href="tqapplication.html#setMainWidget">setMainWidget</a>( mw );
<a name="x611"></a> mw-&gt;<a href="tqwidget.html#show">show</a>();
-<a name="x609"></a><a name="x608"></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>() ) );
- int result = a.<a href="ntqapplication.html#exec">exec</a>();
+<a name="x609"></a><a name="x608"></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>() ) );
+ int result = a.<a href="tqapplication.html#exec">exec</a>();
delete mw;
return result;
}