summaryrefslogtreecommitdiffstats
path: root/doc/html/porting2.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 23:25:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 23:25:45 +0900
commit789e7c7f92e09fb31549a5126281331b86834008 (patch)
treeb05940a604fc84e21cdd7f7c10fb59666ea3bc36 /doc/html/porting2.html
parent69d87202cb139ffe9e4b3ce92e434523b7b09b64 (diff)
downloadtqt3-789e7c7f92e09fb31549a5126281331b86834008.tar.gz
tqt3-789e7c7f92e09fb31549a5126281331b86834008.zip
Removed obsolete Qt2's TQList/TQListIterator classes and replaced
with TQt3's TQPtrList/TQPtrListIterator ones. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/porting2.html')
-rw-r--r--doc/html/porting2.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/html/porting2.html b/doc/html/porting2.html
index f53af35de..3402721cb 100644
--- a/doc/html/porting2.html
+++ b/doc/html/porting2.html
@@ -202,7 +202,7 @@ function that is not in a subclass of <a href="qlistviewitem.html">TQListViewIte
<p> <h3><a name="Collection">Collection classes</a></h3>
<p> <p> The <a href="collection.html#collection-classes">collection classes</a> include generic
classes such as TQGDict, TQGList, and
-the subclasses such as <a href="ntqdict.html">TQDict</a> and TQList.
+the subclasses such as <a href="ntqdict.html">TQDict</a> and TQPtrList.
<p> <p> The macro-based TQt collection classes are obsolete; use the
template-based classes instead. Simply remove includes of ntqgeneric.h and
replace e.g. Q_DECLARE(<a href="ntqcache.html">TQCache</a>,TQPixmap) with TQCache<TQPixmap>.