summaryrefslogtreecommitdiffstats
path: root/doc/html/motif-walkthrough-4.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/motif-walkthrough-4.html')
-rw-r--r--doc/html/motif-walkthrough-4.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/motif-walkthrough-4.html b/doc/html/motif-walkthrough-4.html
index 5b105665..bb02213c 100644
--- a/doc/html/motif-walkthrough-4.html
+++ b/doc/html/motif-walkthrough-4.html
@@ -45,7 +45,7 @@ this document: see the <a href="designer-manual.html">TQt Designer Manual</a> if
with TQt's visual design tool.
<p> <h2> Replacing the <em>Page Edit</em> Dialog
</h2>
-<a name="1"></a><p> The custom <a href="qdialog.html">TQDialog</a> description for the <em>Page Edit</em> dialog is saved
+<a name="1"></a><p> The custom <a href="ntqdialog.html">TQDialog</a> description for the <em>Page Edit</em> dialog is saved
as <tt>pageeditdialog.ui</tt>. We add this file to the project file by
adding the line
<pre>
@@ -64,7 +64,7 @@ done for the <em>Open</em> and <em>Save As</em> dialogs in <tt>todo.cpp</tt>.
<p> <pre></pre>
<p> The <tt>EditPage()</tt> function is implemented in <tt>actions.cpp</tt>. We start
-by adding the includes needed for the <tt>PageEditDialog</tt> and <a href="qlineedit.html">TQLineEdit</a>.
+by adding the includes needed for the <tt>PageEditDialog</tt> and <a href="ntqlineedit.html">TQLineEdit</a>.
<p>
<p> <pre></pre>
@@ -81,8 +81,8 @@ contents of <tt>DoEditPage()</tt> to this point and remove the <tt>DoEditPage()<
<p> The <tt>Page</tt> struct defined in <tt>page.h</tt> stores strings in <tt>char*</tt>
arrays. Since the PageEditDialog and the data it contains will be
destroyed when we return from this function, we need to convert the
-unicode <a href="qstring.html">TQString</a> data into a <a href="qcstring.html">TQCString</a> in the local encoding and
-duplicate it with <a href="qcstring.html#qstrdup">qstrdup</a>().
+unicode <a href="ntqstring.html">TQString</a> data into a <a href="ntqcstring.html">TQCString</a> in the local encoding and
+duplicate it with <a href="ntqcstring.html#qstrdup">qstrdup</a>().
<p> <pre></pre>
<p> The same process must be done for the minorTab text:
<p> <pre></pre>