From cc5287a0a99a943febe2a16362d355bab65d7678 Mon Sep 17 00:00:00 2001 From: Volker Hilsheimer Date: Fri, 25 Sep 2020 12:31:42 +0200 Subject: [PATCH] Fix qdoc warning and typo in QMetaSequence There is no parameter called value in removeValueAtBeing/End. Change-Id: Ife91d2014ea35ea636e9cfb1c815424e5f4ef7a6 Reviewed-by: Fabian Kosmale --- src/corelib/kernel/qmetacontainer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/corelib/kernel/qmetacontainer.cpp b/src/corelib/kernel/qmetacontainer.cpp index c1a752bc1b..9dd5eaa99b 100644 --- a/src/corelib/kernel/qmetacontainer.cpp +++ b/src/corelib/kernel/qmetacontainer.cpp @@ -213,7 +213,7 @@ bool QMetaSequence::canRemoveValueAtBegin() const /*! Removes a value from the beginning of \a container if possible. If - \l canRemoveValueAtBegin() returns \c false, the \a value is not removeed. + \l canRemoveValueAtBegin() returns \c false, the value is not removed. \sa canRemoveValueAtBegin(), isSortable(), addValueAtBegin() */ @@ -267,7 +267,7 @@ bool QMetaSequence::canRemoveValueAtEnd() const /*! Removes a value from the end of \a container if possible. If - \l canRemoveValueAtEnd() returns \c false, the \a value is not removeed. + \l canRemoveValueAtEnd() returns \c false, the value is not removed. \sa canRemoveValueAtEnd(), isSortable(), addValueAtEnd() */