diff options
Diffstat (limited to 'doc/html/addressbook-example.html')
-rw-r--r-- | doc/html/addressbook-example.html | 14 |
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 <<a href="tqpopupmenu-h.html">tqpopupmenu.h</a>> #include <<a href="tqmenubar-h.html">tqmenubar.h</a>> #include <<a href="tqstatusbar-h.html">tqstatusbar.h</a>> -#include <<a href="qapplication-h.html">ntqapplication.h</a>> +#include <<a href="tqapplication-h.html">tqapplication.h</a>> #include <<a href="tqfiledialog-h.html">tqfiledialog.h</a>> <a name="f263"></a>ABMainWindow::ABMainWindow() @@ -140,7 +140,7 @@ void <a name="f264"></a>ABMainWindow::setupMenuBar() file-><a href="tqmenudata.html#insertItem">insertItem</a>( TQPixmap( "fileprint.xpm" ), "Print...", this, TQ_SLOT( filePrint() ), CTRL + Key_P ); file-><a href="tqmenudata.html#insertSeparator">insertSeparator</a>(); file-><a href="tqmenudata.html#insertItem">insertItem</a>( "Close", this, TQ_SLOT( closeWindow() ), CTRL + Key_W ); - file-><a href="tqmenudata.html#insertItem">insertItem</a>( "Quit", tqApp, TQ_SLOT( <a href="ntqapplication.html#quit">quit</a>() ), CTRL + Key_Q ); + file-><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 <<a href="qapplication-h.html">ntqapplication.h</a>> +#include <<a href="tqapplication-h.html">tqapplication.h</a>> #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-><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-><a href="tqwidget.html#show">show</a>(); -<a name="x609"></a><a name="x608"></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>() ) ); - 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>( &a, TQ_SIGNAL( <a href="tqapplication.html#lastWindowClosed">lastWindowClosed</a>() ), &a, TQ_SLOT( <a href="tqapplication.html#quit">quit</a>() ) ); + int result = a.<a href="tqapplication.html#exec">exec</a>(); delete mw; return result; } |