diff options
author | Martin Smith <msmith@trolltech.com> | 2009-05-13 10:59:07 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-05-13 10:59:07 (GMT) |
commit | 589dfd480d6158aaa59ab56c8be6a6bfc41da3ef (patch) | |
tree | a3b63e2589d162e0207d235dd7b6a06d7852b894 /src/corelib | |
parent | 55829ebc5664a65fcef158e7ccd3579aaffa8d20 (diff) | |
download | Qt-589dfd480d6158aaa59ab56c8be6a6bfc41da3ef.zip Qt-589dfd480d6158aaa59ab56c8be6a6bfc41da3ef.tar.gz Qt-589dfd480d6158aaa59ab56c8be6a6bfc41da3ef.tar.bz2 |
qdoc: Fixed some qdoc errors.
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/tools/qhash.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/corelib/tools/qhash.cpp b/src/corelib/tools/qhash.cpp index b2512e1..6c4a3ba 100644 --- a/src/corelib/tools/qhash.cpp +++ b/src/corelib/tools/qhash.cpp @@ -379,8 +379,7 @@ void QHashData::checkSanity() #endif /*! - \fn uint qHash(const QPair<T1, T2> &key) - \relates QHash + \ \since 4.3 Returns the hash value for the \a key. @@ -502,7 +501,8 @@ void QHashData::checkSanity() key. With QHash, the items are arbitrarily ordered. \i The key type of a QMap must provide operator<(). The key type of a QHash must provide operator==() and a global - \l{qHash()} {hash} function. + hash function called qHash() (see the related non-member + functions). \endlist Here's an example QHash with QString keys and \c int values: |