diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-07 17:05:34 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-07 18:41:45 +0900 |
commit | 0c8091f80e1c2bd853e8850f2e6300c055471382 (patch) | |
tree | c35aec9cd2c41f9064e7eaa6aafc0f8aa6734b27 | |
parent | b195cee3f4e3807d41c9cf729c1b4dcb54cd20e2 (diff) | |
download | tqt3-0c8091f80e1c2bd853e8850f2e6300c055471382.tar.gz tqt3-0c8091f80e1c2bd853e8850f2e6300c055471382.zip |
Reintroduced porting documentation previously removed
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit fd565e9bad03fc401559959b8c3a5f8e3d819b2f)
-rw-r--r-- | doc/html/porting.html | 10 | ||||
-rw-r--r-- | doc/porting3.doc | 4 |
2 files changed, 9 insertions, 5 deletions
diff --git a/doc/html/porting.html b/doc/html/porting.html index 440af7d64..e095549c0 100644 --- a/doc/html/porting.html +++ b/doc/html/porting.html @@ -397,14 +397,18 @@ use of the safe qstr* variants directly or ensure that no 0 pointer is passed to the standard C functions in your code base. <p> <h2> Collection Class Renaming </h2> -<a name="6"></a><p> The classes TQArray, TQCollection and TQQueue -have been renamed. To ease porting, the old names and the -old header-file names are still supported. +<a name="6"></a><p> The classes TQArray, TQCollection, TQList, TQListIterator, TQQueue, TQStack +and TQVector have been renamed as per the following table. The original +names are no longer avaialable. <p> <center><table cellpadding="4" cellspacing="2" border="0"> <tr bgcolor="#a2c511"> <th valign="top">Old Name <th valign="top">New Name <th valign="top">New Header File <tr bgcolor="#f0f0f0"> <td valign="top">TQArray <td valign="top"><a href="ntqmemarray.html">TQMemArray</a> <td valign="top"><tt><ntqmemarray.h></tt> <tr bgcolor="#d0d0d0"> <td valign="top">TQCollection <td valign="top"><a href="ntqptrcollection.html">TQPtrCollection</a> <td valign="top"><tt><ntqptrcollection.h></tt> +<tr bgcolor="#f0f0f0"> <td valign="top">TQList <td valign="top"><a href="ntqptrlist.html">TQPtrList</a> <td valign="top"><tt><ntqptrlist.h></tt> +<tr bgcolor="#d0d0d0"> <td valign="top">TQListIterator <td valign="top"><a href="qptrlistiterator.html">TQPtrListIterator</a> <td valign="top"><tt><ntqptrlist.h></tt> <tr bgcolor="#f0f0f0"> <td valign="top">TQQueue <td valign="top"><a href="ntqptrqueue.html">TQPtrQueue</a> <td valign="top"><tt><ntqptrqueue.h></tt> +<tr bgcolor="#d0d0d0"> <td valign="top">TQStack <td valign="top"><a href="ntqptrstack.html">TQPtrStack</a> <td valign="top"><tt><ntqptrstack.h></tt> +<tr bgcolor="#f0f0f0"> <td valign="top">TQVector <td valign="top"><a href="ntqptrvector.html">TQPtrVector</a> <td valign="top"><tt><ntqptrvector.h></tt> </table></center> <p> <h2> <a href="ntqbuttongroup.html">TQButtonGroup</a> </h2> diff --git a/doc/porting3.doc b/doc/porting3.doc index c3024625f..8d55bbe88 100644 --- a/doc/porting3.doc +++ b/doc/porting3.doc @@ -358,8 +358,8 @@ passed to the standard C functions in your code base. \section1 Collection Class Renaming The classes QArray, QCollection, QList, QListIterator, QQueue, QStack -and QVector have been renamed. To ease porting, the old names and the -old header-file names are still supported. +and QVector have been renamed as per the following table. The original +names are no longer avaialable. \table \header \i Old Name \i New Name \i New Header File |