summaryrefslogtreecommitdiffstats
path: root/doc/qcache.doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/qcache.doc')
-rw-r--r--doc/qcache.doc16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/qcache.doc b/doc/qcache.doc
index dad7e36d..14bc9c92 100644
--- a/doc/qcache.doc
+++ b/doc/qcache.doc
@@ -43,7 +43,7 @@
/*!
\class QCache
- \brief The QCache class is a template class that provides a cache based on QString keys.
+ \brief The QCache class is a template class that provides a cache based on TQString keys.
\ingroup collection
\ingroup tools
@@ -85,7 +85,7 @@
There is a QCacheIterator that can be used to traverse the items
in the cache in arbitrary order.
- In QCache, the cache items are accessed via \l QString keys, which
+ In QCache, the cache items are accessed via \l TQString keys, which
are Unicode strings. If you want to use non-Unicode, plain 8-bit
\c char* keys, use the QAsciiCache template. A QCache has the
same performance as a QAsciiCache.
@@ -188,7 +188,7 @@
*/
/*!
- \fn bool QCache::insert( const QString &k, const type *d, int c, int p )
+ \fn bool QCache::insert( const TQString &k, const type *d, int c, int p )
Inserts the item \a d into the cache with key \a k and associated
cost, \a c. Returns TRUE if it is successfully inserted; otherwise
@@ -211,7 +211,7 @@
*/
/*!
- \fn bool QCache::remove( const QString &k )
+ \fn bool QCache::remove( const TQString &k )
Removes the item associated with \a k, and returns TRUE if the
item was present in the cache; otherwise returns FALSE.
@@ -229,7 +229,7 @@
*/
/*!
- \fn type *QCache::take( const QString &k )
+ \fn type *QCache::take( const TQString &k )
Takes the item associated with \a k out of the cache without
deleting it, and returns a pointer to the item taken out, or 0
@@ -256,7 +256,7 @@
*/
/*!
- \fn type *QCache::find( const QString &k, bool ref ) const
+ \fn type *QCache::find( const TQString &k, bool ref ) const
Returns the item associated with key \a k, or 0 if the key does
not exist in the cache. If \a ref is TRUE (the default), the item
@@ -267,7 +267,7 @@
*/
/*!
- \fn type *QCache::operator[]( const QString &k ) const
+ \fn type *QCache::operator[]( const TQString &k ) const
Returns the item associated with key \a k, or 0 if \a k does not
exist in the cache, and moves the item to the front of the least
@@ -422,7 +422,7 @@
*/
/*!
- \fn QString QCacheIterator::currentKey() const
+ \fn TQString QCacheIterator::currentKey() const
Returns the key for the current iterator item.
*/