diff options
Diffstat (limited to 'doc/html/designer-manual-4.html')
-rw-r--r-- | doc/html/designer-manual-4.html | 6 |
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 <<a href="qcolor-h.html">ntqcolor.h</a>> - #include <<a href="qmap-h.html">ntqmap.h</a>> + #include <<a href="tqmap-h.html">tqmap.h</a>> #include <<a href="qstring-h.html">ntqstring.h</a>> </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><TQString,TQColor>& colors ) +<pre> void ColorNameForm::setColors( const <a href="tqmap.html">TQMap</a><TQString,TQColor>& 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 <<a href="qcolor-h.html">ntqcolor.h</a>> - #include <<a href="qmap-h.html">ntqmap.h</a>> + #include <<a href="tqmap-h.html">tqmap.h</a>> #include <<a href="qstring-h.html">ntqstring.h</a>> TQMap<TQString,TQColor> m_colors; |