diff options
Diffstat (limited to 'doc/collect.doc')
-rw-r--r-- | doc/collect.doc | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/collect.doc b/doc/collect.doc index ae781563a..12c2c3ee4 100644 --- a/doc/collect.doc +++ b/doc/collect.doc @@ -67,15 +67,15 @@ The value-based collections are: The pointer-based collections are: \list -\i \l QCache and \l QIntCache, LRU (least recently used) caches. -\i \l QDict, \l QIntDict and \l TQPtrDict dictionaries. +\i \l TQCache and \l TQIntCache, LRU (least recently used) caches. +\i \l TQDict, \l TQIntDict and \l TQPtrDict dictionaries. \i \l TQPtrList, a doubly linked list. \i \l TQPtrQueue, a FIFO (first in, first out) queue. \i \l TQPtrStack, a LIFO (last in, first out) stack. \i \l TQPtrVector, a vector. \endlist -\l QMemArray is exceptional; it is neither pointer nor value based, +\l TQMemArray is exceptional; it is neither pointer nor value based, but memory based. For maximum efficiency with the simple data types usually used in arrays, it uses bitwise operations to copy and compare array elements. @@ -83,10 +83,10 @@ array elements. Some of these classes have corresponding iterators. An iterator is a class for traversing the items in a collection: \list -\i \link QCacheIterator QCacheIterator\endlink and - \link QIntCacheIterator QIntCacheIterator\endlink -\i \link QDictIterator QDictIterator\endlink, - \link QIntDictIterator QIntDictIterator\endlink, and +\i \link TQCacheIterator TQCacheIterator\endlink and + \link TQIntCacheIterator TQIntCacheIterator\endlink +\i \link TQDictIterator TQDictIterator\endlink, + \link TQIntDictIterator TQIntDictIterator\endlink, and \link TQPtrDictIterator TQPtrDictIterator\endlink \i \link TQPtrListIterator TQPtrListIterator\endlink \i \link TQValueListIterator TQValueListIterator\endlink, and @@ -225,9 +225,9 @@ A TQPtrList has an internal list of all the iterators that are currently operating on it. When a list entry is removed, the list updates all iterators accordingly. -The \l QDict and \l QCache collections have no traversal functions. To -traverse these collections, you must use \l QDictIterator or \l -QCacheIterator. +The \l TQDict and \l TQCache collections have no traversal functions. To +traverse these collections, you must use \l TQDictIterator or \l +TQCacheIterator. \section1 Predefined Collections |