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:33:18 +0900 |
commit | fd565e9bad03fc401559959b8c3a5f8e3d819b2f (patch) | |
tree | 8804166da8a3147b259290b784e537c75bd3b334 /doc/porting3.doc | |
parent | 7c116f3bf7ce2c552af7dd8709ee6e726844ef20 (diff) | |
download | tqt3-fd565e9bad03fc401559959b8c3a5f8e3d819b2f.tar.gz tqt3-fd565e9bad03fc401559959b8c3a5f8e3d819b2f.zip |
Reintroduced porting documentation previously removed
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/porting3.doc')
-rw-r--r-- | doc/porting3.doc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/porting3.doc b/doc/porting3.doc index 01f8fb052..8d55bbe88 100644 --- a/doc/porting3.doc +++ b/doc/porting3.doc @@ -355,6 +355,23 @@ resulting from these directives. We strongly recommend that you either make use of the safe qstr* variants directly or ensure that no 0 pointer is 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 as per the following table. The original +names are no longer avaialable. + +\table +\header \i Old Name \i New Name \i New Header File +\row \i QArray \i \l QMemArray \i \c <ntqmemarray.h> +\row \i QCollection \i \l QPtrCollection \i \c <ntqptrcollection.h> +\row \i QList \i \l QPtrList \i \c <ntqptrlist.h> +\row \i QListIterator \i \l QPtrListIterator \i \c <ntqptrlist.h> +\row \i QQueue \i \l QPtrQueue \i \c <ntqptrqueue.h> +\row \i QStack \i \l QPtrStack \i \c <ntqptrstack.h> +\row \i QVector \i \l QPtrVector \i \c <ntqptrvector.h> +\endtable + \section1 QButtonGroup In TQt 2.x, the function QButtonGroup::selected() returns the selected |