Doc: QMap: Add ref-qualifiers to \fn signatures for toStd[Multi]Map()

Because of a bug in QDoc there was never a warning reported for the
missing qualifiers.

Pick-to: 6.3
Task-number: QTBUG-101461
Change-Id: Ibb9114bc5d29e75158d2ac254169ba2a73043f0d
Reviewed-by: Luca Di Sera <luca.disera@qt.io>
This commit is contained in:
Topi Reinio 2022-03-23 16:10:02 +01:00
parent 867fee2c15
commit 5578b47092
2 changed files with 2 additions and 2 deletions

View File

@ -243,7 +243,7 @@
\sa toStdMap()
*/
/*! \fn template <class Key, class T> std::map<Key, T> QMap<Key, T>::toStdMap() const
/*! \fn template <class Key, class T> std::map<Key, T> QMap<Key, T>::toStdMap() const &
Returns an STL map equivalent to this QMap.
*/

View File

@ -246,7 +246,7 @@
Returns an STL multi map equivalent to this QMultiMap.
*/
/*! \fn template <class Key, class T> std::multimap<Key, T> QMultiMap<Key, T>::toStdMultiMap() const
/*! \fn template <class Key, class T> std::multimap<Key, T> QMultiMap<Key, T>::toStdMultiMap() const &
Returns an STL multi map equivalent to this QMultiMap.
*/