Doc: fix warnings from incorrect signatures in QJniArray

Amends a6b1f80cd6c833f6eb2fbfb778254cd7fcbc000f.

Pick-to: 6.8
Change-Id: I40c7b6e756ddb7a4f4fe477e0ec2e42bc97ba027
Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
This commit is contained in:
Volker Hilsheimer 2024-07-10 10:04:45 +02:00
parent 0b0b30f7cf
commit dc2b94551c

View File

@ -235,7 +235,7 @@
*/
/*!
\fn template <typename T> template <typename Other, if_convertible<Other>> QJniArray<T>::QJniArray(const QJniArray<Other> &other)
\fn template <typename T> template <typename Other, if_convertible<Other>> QJniArray<T>::QJniArray(QJniArray<Other> &&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 <typename T> template <typename Container>
Container QJniArray<T>::toContainer(Container &&container) const
\fn template <typename T> template <typename Container> Container QJniArray<T>::toContainer(Container &&container) const
\return a container populated with the data in the wrapped Java array.