diff options
author | Michele Calgaro <[email protected]> | 2024-06-05 19:02:23 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-06-05 19:02:23 +0900 |
commit | 1f0ce8533cc837aa2d4155b5fc17d2004bed0197 (patch) | |
tree | d62f4174c0e58e1aa895fc71484d068b614cd6de /doc/html/designer-manual-4.html | |
parent | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (diff) | |
download | tqt3-1f0ce8533cc837aa2d4155b5fc17d2004bed0197.tar.gz tqt3-1f0ce8533cc837aa2d4155b5fc17d2004bed0197.zip |
Rename template library nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
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; |