Docs: properly tag QtAlgorithms functions as deprecated

Turns out that \obsolete means "Qt3Support", while the correct tag
is \deprecated.

Change-Id: Id9896893f3078a0d516bd8751bce0b2df441509d
Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
This commit is contained in:
Giuseppe D'Angelo 2014-02-10 10:01:43 +01:00 committed by The Qt Project
parent 8958611fa7
commit ba56beaea4
1 changed files with 27 additions and 27 deletions

View File

@ -230,7 +230,7 @@
/*! \fn OutputIterator qCopy(InputIterator begin1, InputIterator end1, OutputIterator begin2) /*! \fn OutputIterator qCopy(InputIterator begin1, InputIterator end1, OutputIterator begin2)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
Use std::copy instead. Use std::copy instead.
@ -249,7 +249,7 @@
/*! \fn BiIterator2 qCopyBackward(BiIterator1 begin1, BiIterator1 end1, BiIterator2 end2) /*! \fn BiIterator2 qCopyBackward(BiIterator1 begin1, BiIterator1 end1, BiIterator2 end2)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
Use std::copy_backward instead. Use std::copy_backward instead.
@ -268,7 +268,7 @@
/*! \fn bool qEqual(InputIterator1 begin1, InputIterator1 end1, InputIterator2 begin2) /*! \fn bool qEqual(InputIterator1 begin1, InputIterator1 end1, InputIterator2 begin2)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
Use std::equal instead. Use std::equal instead.
@ -287,7 +287,7 @@
/*! \fn void qFill(ForwardIterator begin, ForwardIterator end, const T &value) /*! \fn void qFill(ForwardIterator begin, ForwardIterator end, const T &value)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
Use std::fill instead. Use std::fill instead.
@ -301,7 +301,7 @@
/*! \fn void qFill(Container &container, const T &value) /*! \fn void qFill(Container &container, const T &value)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
\overload \overload
Use std::fill instead. Use std::fill instead.
@ -311,7 +311,7 @@
/*! \fn InputIterator qFind(InputIterator begin, InputIterator end, const T &value) /*! \fn InputIterator qFind(InputIterator begin, InputIterator end, const T &value)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
Use std::find instead. Use std::find instead.
@ -334,7 +334,7 @@
/*! \fn void qFind(const Container &container, const T &value) /*! \fn void qFind(const Container &container, const T &value)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
\overload \overload
Use std::find instead. Use std::find instead.
@ -344,7 +344,7 @@
/*! \fn void qCount(InputIterator begin, InputIterator end, const T &value, Size &n) /*! \fn void qCount(InputIterator begin, InputIterator end, const T &value, Size &n)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
Use std::count instead. Use std::count instead.
@ -364,7 +364,7 @@
/*! \fn void qCount(const Container &container, const T &value, Size &n) /*! \fn void qCount(const Container &container, const T &value, Size &n)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
\overload \overload
Use std::count instead. Use std::count instead.
@ -376,7 +376,7 @@
/*! \fn void qSwap(T &var1, T &var2) /*! \fn void qSwap(T &var1, T &var2)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
Use std::swap instead. Use std::swap instead.
@ -388,7 +388,7 @@
/*! \fn void qSort(RandomAccessIterator begin, RandomAccessIterator end) /*! \fn void qSort(RandomAccessIterator begin, RandomAccessIterator end)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
Use std::sort instead. Use std::sort instead.
@ -413,7 +413,7 @@
/*! \fn void qSort(RandomAccessIterator begin, RandomAccessIterator end, LessThan lessThan) /*! \fn void qSort(RandomAccessIterator begin, RandomAccessIterator end, LessThan lessThan)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
\overload \overload
Use std::sort instead. Use std::sort instead.
@ -449,7 +449,7 @@
/*! \fn void qSort(Container &container) /*! \fn void qSort(Container &container)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
\overload \overload
Use std::sort instead. Use std::sort instead.
@ -460,7 +460,7 @@
/*! /*!
\fn void qStableSort(RandomAccessIterator begin, RandomAccessIterator end) \fn void qStableSort(RandomAccessIterator begin, RandomAccessIterator end)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
Use std::stable_sort instead. Use std::stable_sort instead.
@ -487,7 +487,7 @@
/*! /*!
\fn void qStableSort(RandomAccessIterator begin, RandomAccessIterator end, LessThan lessThan) \fn void qStableSort(RandomAccessIterator begin, RandomAccessIterator end, LessThan lessThan)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
\overload \overload
Use std::stable_sort instead. Use std::stable_sort instead.
@ -519,7 +519,7 @@
/*! /*!
\fn void qStableSort(Container &container) \fn void qStableSort(Container &container)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
\overload \overload
Use std::stable_sort instead. Use std::stable_sort instead.
@ -529,7 +529,7 @@
/*! \fn RandomAccessIterator qLowerBound(RandomAccessIterator begin, RandomAccessIterator end, const T &value) /*! \fn RandomAccessIterator qLowerBound(RandomAccessIterator begin, RandomAccessIterator end, const T &value)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
Use std::lower_bound instead. Use std::lower_bound instead.
@ -558,7 +558,7 @@
/*! /*!
\fn RandomAccessIterator qLowerBound(RandomAccessIterator begin, RandomAccessIterator end, const T &value, LessThan lessThan) \fn RandomAccessIterator qLowerBound(RandomAccessIterator begin, RandomAccessIterator end, const T &value, LessThan lessThan)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
\overload \overload
Use std::lower_bound instead. Use std::lower_bound instead.
@ -573,7 +573,7 @@
/*! /*!
\fn void qLowerBound(const Container &container, const T &value) \fn void qLowerBound(const Container &container, const T &value)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
\overload \overload
Use std::lower_bound instead. Use std::lower_bound instead.
@ -586,7 +586,7 @@
/*! \fn RandomAccessIterator qUpperBound(RandomAccessIterator begin, RandomAccessIterator end, const T &value) /*! \fn RandomAccessIterator qUpperBound(RandomAccessIterator begin, RandomAccessIterator end, const T &value)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
Use std::upper_bound instead. Use std::upper_bound instead.
@ -615,7 +615,7 @@
/*! /*!
\fn RandomAccessIterator qUpperBound(RandomAccessIterator begin, RandomAccessIterator end, const T &value, LessThan lessThan) \fn RandomAccessIterator qUpperBound(RandomAccessIterator begin, RandomAccessIterator end, const T &value, LessThan lessThan)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
\overload \overload
Use std::upper_bound instead. Use std::upper_bound instead.
@ -630,7 +630,7 @@
/*! /*!
\fn void qUpperBound(const Container &container, const T &value) \fn void qUpperBound(const Container &container, const T &value)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
\overload \overload
Use std::upper_bound instead. Use std::upper_bound instead.
@ -641,7 +641,7 @@
/*! \fn RandomAccessIterator qBinaryFind(RandomAccessIterator begin, RandomAccessIterator end, const T &value) /*! \fn RandomAccessIterator qBinaryFind(RandomAccessIterator begin, RandomAccessIterator end, const T &value)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
Use std::binary_search or std::lower_bound instead. Use std::binary_search or std::lower_bound instead.
@ -667,7 +667,7 @@
/*! \fn RandomAccessIterator qBinaryFind(RandomAccessIterator begin, RandomAccessIterator end, const T &value, LessThan lessThan) /*! \fn RandomAccessIterator qBinaryFind(RandomAccessIterator begin, RandomAccessIterator end, const T &value, LessThan lessThan)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
\overload \overload
Use std::binary_search or std::lower_bound instead. Use std::binary_search or std::lower_bound instead.
@ -682,7 +682,7 @@
/*! /*!
\fn void qBinaryFind(const Container &container, const T &value) \fn void qBinaryFind(const Container &container, const T &value)
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
\overload \overload
Use std::binary_search or std::lower_bound instead. Use std::binary_search or std::lower_bound instead.
@ -725,7 +725,7 @@
/*! \fn LessThan qLess() /*! \fn LessThan qLess()
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
Use std::less instead. Use std::less instead.
@ -741,7 +741,7 @@
/*! \fn LessThan qGreater() /*! \fn LessThan qGreater()
\relates <QtAlgorithms> \relates <QtAlgorithms>
\obsolete \deprecated
Use std::greater instead. Use std::greater instead.