Improve QMultiMap docs a bit
Change-Id: I170dc5de15dac61620aaed94f32226c158092dce Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>bb10
parent
3657405fe7
commit
046ad5a442
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue