Improve QMultiMap docs a bit

Change-Id: I170dc5de15dac61620aaed94f32226c158092dce
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
bb10
Giuseppe D'Angelo 2020-08-07 15:24:03 +02:00
parent 3657405fe7
commit 046ad5a442
1 changed files with 8 additions and 1 deletions

View File

@ -214,13 +214,20 @@
initializer list \a list.
*/
/*! \fn template <class Key, class T> QMultiMap<Key, T>::QMultiMap(const typename std::multimap<Key, T> & other)
/*! \fn template <class Key, class T> QMultiMap<Key, T>::QMultiMap(const std::multimap<Key, T> &other)
Constructs a copy of \a other.
\sa toStdMultiMap()
*/
/*! \fn template <class Key, class T> QMultiMap<Key, T>::QMultiMap(std::multimap<Key, T> &&other)
Constructs a multi map by moving from \a other.
\sa toStdMultiMap()
*/
/*! \fn template <class Key, class T> std::multimap<Key, T> QMultiMap<Key, T>::toStdMap() const
\obsolete Use toStdMultiMap() instead.