diff --git a/src/corelib/kernel/qmetacontainer.cpp b/src/corelib/kernel/qmetacontainer.cpp index 5f68f8fe74d..c70afe163bb 100644 --- a/src/corelib/kernel/qmetacontainer.cpp +++ b/src/corelib/kernel/qmetacontainer.cpp @@ -37,6 +37,18 @@ QT_BEGIN_NAMESPACE Returns the QMetaSequence corresponding to the type given as template parameter. */ +/*! + \class QMetaContainer + \inmodule QtCore + \since 6.0 + \brief The QMetaContainer class provides common functionality for sequential + and associative containers. + + \ingroup objectmodel + + \compares equality +*/ + /*! Returns \c true if the underlying container provides at least an input iterator as defined by std::input_iterator_tag, otherwise returns @@ -492,7 +504,7 @@ void QMetaContainer::copyIterator(void *target, const void *source) const } /*! - Advances the non-const \a iterator by \a step steps. If \a steps is negative + Advances the non-const \a iterator by \a step steps. If \a step is negative the \a iterator is moved backwards, towards the beginning of the container. The behavior is unspecified for negative values of \a step if \l hasBidirectionalIterator() returns false. @@ -740,7 +752,7 @@ void QMetaContainer::copyConstIterator(void *target, const void *source) const } /*! - Advances the const \a iterator by \a step steps. If \a steps is negative + Advances the const \a iterator by \a step steps. If \a step is negative the \a iterator is moved backwards, towards the beginning of the container. The behavior is unspecified for negative values of \a step if \l hasBidirectionalIterator() returns false.