summaryrefslogtreecommitdiffstats
path: root/doc/html/extension-dialog-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/extension-dialog-example.html')
-rw-r--r--doc/html/extension-dialog-example.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/extension-dialog-example.html b/doc/html/extension-dialog-example.html
index 281905abf..074b091ce 100644
--- a/doc/html/extension-dialog-example.html
+++ b/doc/html/extension-dialog-example.html
@@ -36,7 +36,7 @@ body { background: #ffffff; color: black; }
<p>
<p> This example demonstrates how to create an extension dialog.
<p> Essentially all that is necessary is to create a standard dialog
-and then create a <a href="qwidget.html">TQWidget</a> form to be used as the extension. See
+and then create a <a href="ntqwidget.html">TQWidget</a> form to be used as the extension. See
the article in <a href="http://doc.trolltech.com/qq/">TQt
Quarterly</a> issue #3.
<p> <hr>
@@ -67,15 +67,15 @@ DBFILE = extension.db
*****************************************************************************/
#include "dialogform.h"
#include "extension.h"
-#include &lt;<a href="qapplication-h.html">qapplication.h</a>&gt;
-#include &lt;<a href="qcheckbox-h.html">qcheckbox.h</a>&gt;
-#include &lt;<a href="qlineedit-h.html">qlineedit.h</a>&gt;
+#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
+#include &lt;<a href="qcheckbox-h.html">ntqcheckbox.h</a>&gt;
+#include &lt;<a href="qlineedit-h.html">ntqlineedit.h</a>&gt;
void MainForm::init()
{
sessions = FALSE;
logging = FALSE;
- log_filename = <a href="qstring.html#TQString-null">TQString::null</a>;
+ log_filename = <a href="ntqstring.html#TQString-null">TQString::null</a>;
log_errors = TRUE;
log_actions = TRUE;
}
@@ -102,7 +102,7 @@ void MainForm::optionsDlg()
void MainForm::quit()
{
-<a name="x2865"></a> TQApplication::<a href="qapplication.html#exit">exit</a>( 0 );
+<a name="x2865"></a> TQApplication::<a href="ntqapplication.html#exit">exit</a>( 0 );
}
</pre>
@@ -126,7 +126,7 @@ void DialogForm::toggleDetails()
{
extensionShown = !extensionShown;
showExtension( extensionShown );
- <a href="qstring.html">TQString</a> text = tr( "&amp;Details " );
+ <a href="ntqstring.html">TQString</a> text = tr( "&amp;Details " );
text += TQString( extensionShown ? "&lt;&lt;&lt;" : "&gt;&gt;&gt;" );
detailsPushButton-&gt;setText( text );
}
@@ -143,16 +143,16 @@ void DialogForm::toggleDetails()
<p> <hr>
<p> Main:
-<p> <pre>#include &lt;<a href="qapplication-h.html">qapplication.h</a>&gt;
+<p> <pre>#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
#include "mainform.h"
int main( int argc, char ** argv )
{
- <a href="qapplication.html">TQApplication</a> a( argc, argv );
+ <a href="ntqapplication.html">TQApplication</a> a( argc, argv );
MainForm *w = new MainForm;
w-&gt;show();
-<a name="x2868"></a><a name="x2867"></a> a.<a href="qobject.html#connect">connect</a>( &amp;a, SIGNAL( <a href="qapplication.html#lastWindowClosed">lastWindowClosed</a>() ), w, SLOT( quit() ) );
- return a.<a href="qapplication.html#exec">exec</a>();
+<a name="x2868"></a><a name="x2867"></a> a.<a href="ntqobject.html#connect">connect</a>( &amp;a, SIGNAL( <a href="ntqapplication.html#lastWindowClosed">lastWindowClosed</a>() ), w, SLOT( quit() ) );
+ return a.<a href="ntqapplication.html#exec">exec</a>();
}
</pre>