summaryrefslogtreecommitdiffstats
path: root/doc/html/qt-template-lib.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 14:56:09 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 14:56:09 +0900
commit87d29563e3ccdeb7fea0197e262e667ef323ff9c (patch)
tree2d674f204c5205ca577a782e1b50583afd563972 /doc/html/qt-template-lib.html
parent628b0bb74c3fc327efff8add9c73ada04b1cbea2 (diff)
downloadtqt3-87d29563e3ccdeb7fea0197e262e667ef323ff9c.tar.gz
tqt3-87d29563e3ccdeb7fea0197e262e667ef323ff9c.zip
Rename utility class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/qt-template-lib.html')
-rw-r--r--doc/html/qt-template-lib.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/qt-template-lib.html b/doc/html/qt-template-lib.html
index 09a9a95fe..c348e3f17 100644
--- a/doc/html/qt-template-lib.html
+++ b/doc/html/qt-template-lib.html
@@ -70,7 +70,7 @@ instead. Value semantics require at least:
<p> Note that a fast copy constructor is absolutely crucial to achieve
good overall performance of the container, since many copy operations
will occur.
-<p> If you intend sorting your data you must implement <a href="ntqcstring.html#operator-lt-2">operator&lt;</a>() for
+<p> If you intend sorting your data you must implement <a href="tqcstring.html#operator-lt-2">operator&lt;</a>() for
your data's class.
<p> Good candidates for value based classes are <a href="ntqrect.html">TQRect</a>, <a href="ntqpoint.html">TQPoint</a>, <a href="tqsize.html">TQSize</a>,
<a href="tqstring.html">TQString</a> and all simple C++ types, such as int, bool or double.
@@ -152,7 +152,7 @@ like this:
those elements that fall between the two iterators, i.e. 100, 1234 and
12. The third example shows that iterators act like pointers and can
be treated as such.
-<p> If using your own data types you must implement <a href="ntqcstring.html#operator-lt-2">operator&lt;</a>() for
+<p> If using your own data types you must implement <a href="tqcstring.html#operator-lt-2">operator&lt;</a>() for
your data's class.
<p> Naturally, the sorting templates won't work with const iterators.
<p> <a name="qSwap"></a>