From 0f62cc21f506b859b28c17901a8e2f9e6abebd6c Mon Sep 17 00:00:00 2001 From: Volker Hilsheimer Date: Wed, 10 Jul 2024 10:04:45 +0200 Subject: [PATCH] Doc: fix warnings from incorrect signatures in QJniArray Amends a6b1f80cd6c833f6eb2fbfb778254cd7fcbc000f. Change-Id: I40c7b6e756ddb7a4f4fe477e0ec2e42bc97ba027 Reviewed-by: Assam Boudjelthia (cherry picked from commit dc2b94551c21c6957c4b266647e4aad7cce1e60c) Reviewed-by: Volker Hilsheimer --- src/corelib/kernel/qjniarray.qdoc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/corelib/kernel/qjniarray.qdoc b/src/corelib/kernel/qjniarray.qdoc index e24b4eeb9c4..d0d803102a0 100644 --- a/src/corelib/kernel/qjniarray.qdoc +++ b/src/corelib/kernel/qjniarray.qdoc @@ -235,7 +235,7 @@ */ /*! - \fn template template > QJniArray::QJniArray(const QJniArray &other) + \fn template template > QJniArray::QJniArray(QJniArray &&other) Constructs a QJniArray that is a copy of \a other, with both objects referencing the same Java array object. @@ -399,8 +399,7 @@ */ /*! - \fn template template - Container QJniArray::toContainer(Container &&container) const + \fn template template Container QJniArray::toContainer(Container &&container) const \return a container populated with the data in the wrapped Java array.