summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qmap.cpp
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@digia.com>2015-08-07 13:46:57 +0200
committerMartin Smith <martin.smith@digia.com>2015-08-16 14:48:13 +0000
commit89302b8b88b2bfa9581bb15c1caa052cb6d76988 (patch)
tree5e39127fbd42bab7906fae0d6f65c927f372c8d2 /src/corelib/tools/qmap.cpp
parent330da82cc2b51a96ebcf021746e14304a1c9a68b (diff)
doc: Add a few missing const keywords in \fn commands
This adds "const" to a few \fn commands for new operators in QHash and QMap. Change-Id: I93cf7aaf88fcb4db17de5810b555b978e8119e20 Task-number: QTBUG-47669 Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com>
Diffstat (limited to 'src/corelib/tools/qmap.cpp')
-rw-r--r--src/corelib/tools/qmap.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/tools/qmap.cpp b/src/corelib/tools/qmap.cpp
index f7aa7332dd..e49a1a098d 100644
--- a/src/corelib/tools/qmap.cpp
+++ b/src/corelib/tools/qmap.cpp
@@ -1719,7 +1719,7 @@ void QMapDataBase::freeData(QMapDataBase *d)
Returns a pointer to the current item's key.
*/
-/*! \fn bool QMap::key_iterator::operator==(key_iterator other)
+/*! \fn bool QMap::key_iterator::operator==(key_iterator other) const
Returns \c true if \a other points to the same item as this
iterator; otherwise returns \c false.
@@ -1727,7 +1727,7 @@ void QMapDataBase::freeData(QMapDataBase *d)
\sa operator!=()
*/
-/*! \fn bool QMap::key_iterator::operator!=(key_iterator other)
+/*! \fn bool QMap::key_iterator::operator!=(key_iterator other) const
Returns \c true if \a other points to a different item than this
iterator; otherwise returns \c false.