summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/src/containers.qdoc
diff options
context:
space:
mode:
authorJerome Pasion <jerome.pasion@digia.com>2012-10-18 15:37:50 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-10-26 17:08:03 +0200
commit9bf017680229b7e1677d9c347cb36fce8c52a610 (patch)
tree1d845edd6886e67678dd8824c4c4c23caca7e1ae /src/corelib/doc/src/containers.qdoc
parent38e02188ee132fd8c483fcb9773979875677c070 (diff)
Qt Core: Adding a landing page and sorted the documentation.
-Added \annotatedlist for the groups -Sorted and placed the pages on the index page. Change-Id: Id1a4344c0b39f00036f5ac29b1fcb869d5602d2b Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/corelib/doc/src/containers.qdoc')
-rw-r--r--src/corelib/doc/src/containers.qdoc19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/corelib/doc/src/containers.qdoc b/src/corelib/doc/src/containers.qdoc
index 24c5629ae2..29c30869ba 100644
--- a/src/corelib/doc/src/containers.qdoc
+++ b/src/corelib/doc/src/containers.qdoc
@@ -33,12 +33,13 @@
\brief Collection classes such as list, queue, stack and string, along
with other classes that can be used without needing QApplication.
- The non-GUI classes are general-purpose collection and string classes
- that may be used independently of the GUI classes.
+ These \l{Qt Core} non-GUI classes are general-purpose collection and string
+ classes that may be used independently of the GUI classes.
In particular, these classes do not depend on QApplication at all,
and so can be used in non-GUI programs.
+ \annotatedlist tools
*/
/*!
@@ -394,13 +395,13 @@
QMapIterator, which is somewhat different because it iterates on
(key, value) pairs.
- Like QListIterator, QMapIterator provides
- \l{QMapIterator::toFront()}{toFront()},
- \l{QMapIterator::toBack()}{toBack()},
- \l{QMapIterator::hasNext()}{hasNext()},
- \l{QMapIterator::next()}{next()},
- \l{QMapIterator::peekNext()}{peekNext()},
- \l{QMapIterator::hasPrevious()}{hasPrevious()},
+ Like QListIterator, QMapIterator provides
+ \l{QMapIterator::toFront()}{toFront()},
+ \l{QMapIterator::toBack()}{toBack()},
+ \l{QMapIterator::hasNext()}{hasNext()},
+ \l{QMapIterator::next()}{next()},
+ \l{QMapIterator::peekNext()}{peekNext()},
+ \l{QMapIterator::hasPrevious()}{hasPrevious()},
\l{QMapIterator::previous()}{previous()}, and
\l{QMapIterator::peekPrevious()}{peekPrevious()}. The key and
value components are extracted by calling key() and value() on