Since 3.4->3.2

This commit is contained in:
Nyall Dawson 2018-06-11 09:00:02 +10:00
parent 2c2100b9ad
commit a534286c89
3 changed files with 5 additions and 5 deletions

View File

@ -67,7 +67,7 @@ in the range.
.. seealso:: :py:func:`setBounds`
.. versionadded:: 3.4
.. versionadded:: 3.2
%End
double setMin( double min );
@ -92,7 +92,7 @@ in the range.
.. seealso:: :py:func:`bounds`
.. versionadded:: 3.4
.. versionadded:: 3.2
%End
bool operator==( QgsRasterRange o ) const;

View File

@ -34,7 +34,7 @@ class QgsRectangle;
/**
* Utility functions for reclassifying raster layers.
* \ingroup analysis
* \since QGIS 3.4
* \since QGIS 3.2
*/
class ANALYSIS_EXPORT QgsReclassifyUtils
{

View File

@ -75,7 +75,7 @@ class CORE_EXPORT QgsRasterRange
* whether or not the min and max values themselves are included
* in the range.
* \see setBounds()
* \since QGIS 3.4
* \since QGIS 3.2
*/
BoundsType bounds() const { return mType; }
@ -96,7 +96,7 @@ class CORE_EXPORT QgsRasterRange
* whether or not the min and max values themselves are included
* in the range.
* \see bounds()
* \since QGIS 3.4
* \since QGIS 3.2
*/
void setBounds( BoundsType type ) { mType = type; }