summaryrefslogtreecommitdiffstats
path: root/doc/html/motif-walkthrough-6.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-02 21:37:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-06 11:24:55 +0900
commit7552c6d73043b1040139033f6864db48ae5446cf (patch)
treef90d24d072dd3ee6a3f909bf7778abc7669f03ef /doc/html/motif-walkthrough-6.html
parentc113da2069b66130f67a0f27c699e1cec83588a5 (diff)
downloadtqt-7552c6d7.tar.gz
tqt-7552c6d7.zip
Rename main window nt* related files to equivalent tq*. The file
"ntqsession.h" was totally unnecessary and has been removed. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/motif-walkthrough-6.html')
-rw-r--r--doc/html/motif-walkthrough-6.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/motif-walkthrough-6.html b/doc/html/motif-walkthrough-6.html
index 8d4821c08..3de6da150 100644
--- a/doc/html/motif-walkthrough-6.html
+++ b/doc/html/motif-walkthrough-6.html
@@ -87,7 +87,7 @@ space, so we've omitted it.
<p> There are four exceptions to the above. The <tt>Open()</tt>, <tt>Save()</tt>, <tt>EditPage()</tt> and <tt>DeletePage()</tt> callbacks accept a pointer to the
toplevel <a href="tqwidget.html">TQWidget</a> as argument 2 (the <em>client_data</em> argument). For
these four functions, we pass <em>this</em> as the second argument, which is
-a toplevel <tt>MainWindow</tt> derived from <a href="ntqmainwindow.html">TQMainWindow</a>.
+a toplevel <tt>MainWindow</tt> derived from <a href="tqmainwindow.html">TQMainWindow</a>.
<p> <h2> Replacing the <em>Main Window</em>
</h2>
<a name="2"></a><p> The next step is to use the new <em>Main Window</em> in our application.
@@ -112,7 +112,7 @@ either. We remove it and all references to it in the <tt>New()</tt>, <tt>Save()
<p> We remove all of the code used to create the Motif menus. The
remaining code in <tt>main()</tt> is self-explanatory.
<p> <pre></pre>
-<p> Our application is now using <a href="ntqmainwindow.html">TQMainWindow</a> instead of <tt>XmMainWindow</tt>.
+<p> Our application is now using <a href="tqmainwindow.html">TQMainWindow</a> instead of <tt>XmMainWindow</tt>.
After we build the project, the application runs and operates as
expected.
<p> [ <a href="motif-walkthrough-5.html">Previous: Using Existing Dialogs with TQMotifDialog</a> ]