diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 12:20:38 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 12:20:38 +0900 |
commit | 0881ed5059c46ce73e8241e6260b82b92f6d0e55 (patch) | |
tree | 6d1d4883cc07ad22b11017d0714d4c26e1ce1b94 /doc/qasciidict.doc | |
parent | 1f0ce8533cc837aa2d4155b5fc17d2004bed0197 (diff) | |
download | tqt-0881ed50.tar.gz tqt-0881ed50.zip |
Rename ptr nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/qasciidict.doc')
-rw-r--r-- | doc/qasciidict.doc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/qasciidict.doc b/doc/qasciidict.doc index 198fbf134..2e7f5b94b 100644 --- a/doc/qasciidict.doc +++ b/doc/qasciidict.doc @@ -87,12 +87,12 @@ In this example we use a dictionary to keep track of the line edits we're using. We insert each line edit into the dictionary with a unique name and then access the line edits via the - dictionary. See QPtrDict, QIntDict and QDict. + dictionary. See TQPtrDict, QIntDict and QDict. See QDict for full details, including the choice of dictionary size, and how deletions are handled. - \sa QAsciiDictIterator, QDict, QIntDict, QPtrDict, + \sa QAsciiDictIterator, QDict, QIntDict, TQPtrDict, \link collection.html Collection Classes\endlink */ @@ -230,7 +230,7 @@ recently inserted item will be removed. The removed item is deleted if \link - QPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. + TQPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. All dictionary iterators that refer to the removed item will be set to point to the next item in the dictionary traversal order. @@ -242,7 +242,7 @@ \fn type *QAsciiDict::take( const char *key ) Takes the item associated with \a key out of the dictionary - without deleting it (even if \link QPtrCollection::setAutoDelete() + without deleting it (even if \link TQPtrCollection::setAutoDelete() auto-deletion\endlink is enabled). If there are two or more items with equal keys, then the most @@ -263,7 +263,7 @@ Removes all items from the dictionary. The removed items are deleted if \link - QPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. + TQPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. All dictionary iterators that operate on dictionary are reset. @@ -313,7 +313,7 @@ /*! \fn QDataStream& QAsciiDict::read( QDataStream &s, - QPtrCollection::Item &item ) + TQPtrCollection::Item &item ) Reads a dictionary item from the stream \a s and returns a reference to the stream. @@ -325,7 +325,7 @@ /*! \fn QDataStream& QAsciiDict::write( QDataStream &s, - QPtrCollection::Item ) const + TQPtrCollection::Item ) const Writes a dictionary item to the stream \a s and returns a reference to the stream. |