summaryrefslogtreecommitdiffstats
path: root/doc/html/designer-manual-4.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/designer-manual-4.html')
-rw-r--r--doc/html/designer-manual-4.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/designer-manual-4.html b/doc/html/designer-manual-4.html
index 2f50a2451..a0272eb60 100644
--- a/doc/html/designer-manual-4.html
+++ b/doc/html/designer-manual-4.html
@@ -121,7 +121,7 @@ body { background: #ffffff; color: black; }
</blockquote>
<p>We'll start by adding some includes.</p>
<pre> #include &lt;<a href="qcolor-h.html">ntqcolor.h</a>&gt;
- #include &lt;<a href="qmap-h.html">ntqmap.h</a>&gt;
+ #include &lt;<a href="tqmap-h.html">tqmap.h</a>&gt;
#include &lt;<a href="qstring-h.html">ntqstring.h</a>&gt;
</pre>
<p>Enter these above the <tt>validate()</tt> function.</p>
@@ -130,7 +130,7 @@ body { background: #ffffff; color: black; }
</pre>
<p>Add this line; we'll store the colors in a local <tt>m_colors</tt> map.</p>
<p>We also need a function that the caller can call to populate the <tt>m_colors</tt> map with the current colors.</p>
-<pre> void ColorNameForm::setColors( const <a href="ntqmap.html">TQMap</a>&lt;TQString,TQColor&gt;&amp; colors )
+<pre> void ColorNameForm::setColors( const <a href="tqmap.html">TQMap</a>&lt;TQString,TQColor&gt;&amp; colors )
{
m_colors = colors;
}
@@ -502,7 +502,7 @@ body { background: #ffffff; color: black; }
</ul><h4><a name="6-2"></a>ColorNameForm Members</h4>
<p>We put all the ColorNameForm declarations in the source code file. The file <tt>colornameform.ui.h</tt> should begin with the following declarations:</p>
<pre> #include &lt;<a href="qcolor-h.html">ntqcolor.h</a>&gt;
- #include &lt;<a href="qmap-h.html">ntqmap.h</a>&gt;
+ #include &lt;<a href="tqmap-h.html">tqmap.h</a>&gt;
#include &lt;<a href="qstring-h.html">ntqstring.h</a>&gt;
TQMap&lt;TQString,TQColor&gt; m_colors;