diff options
author | Martin Smith <msmith@trolltech.com> | 2009-11-16 12:43:15 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-11-16 12:45:09 (GMT) |
commit | d65bff4c94fb11bbad02420459a9375621051823 (patch) | |
tree | 4d47f88a209202d10efc7738f93cb53a54e503d9 /src/corelib/tools/qcontiguouscache.cpp | |
parent | d99137fe4bbef299a52c375717e6925457f34ac2 (diff) | |
download | Qt-d65bff4c94fb11bbad02420459a9375621051823.zip Qt-d65bff4c94fb11bbad02420459a9375621051823.tar.gz Qt-d65bff4c94fb11bbad02420459a9375621051823.tar.bz2 |
doc: Fixed qdoc according to Bjarne's recommendation.
Someone had changed an operator==() and an operator!=() from
single parameter members to two-parameter friends but hadn't
changed the qdoc comments.
Diffstat (limited to 'src/corelib/tools/qcontiguouscache.cpp')
-rw-r--r-- | src/corelib/tools/qcontiguouscache.cpp | 31 |
1 files changed, 28 insertions, 3 deletions
diff --git a/src/corelib/tools/qcontiguouscache.cpp b/src/corelib/tools/qcontiguouscache.cpp index dd7cab6..dab7327 100644 --- a/src/corelib/tools/qcontiguouscache.cpp +++ b/src/corelib/tools/qcontiguouscache.cpp @@ -150,20 +150,45 @@ MyRecord record(int row) const */ /*! \fn void QContiguousCache::detach() - \internal */ /*! \fn bool QContiguousCache::isDetached() const - \internal */ /*! \fn void QContiguousCache::setSharable(bool sharable) - \internal */ +/*! \typedef QContiguousCache::value_type + \internal + */ + +/*! \typedef QContiguousCache::pointer + \internal + */ + +/*! \typedef QContiguousCache::const_pointer + \internal + */ + +/*! \typedef QContiguousCache::reference + \internal + */ + +/*! \typedef QContiguousCache::const_reference + \internal + */ + +/*! \typedef QContiguousCache::difference_type + \internal + */ + +/*! \typedef QContiguousCache::size_type + \internal + */ + /*! \fn QContiguousCache<T> &QContiguousCache::operator=(const QContiguousCache<T> &other) Assigns \a other to this cache and returns a reference to this cache. |