3.18 -> 3.20

This commit is contained in:
Loïc Bartoletti 2021-04-07 16:30:14 +02:00 committed by Nyall Dawson
parent 1d29a42cd9
commit 2fd51b2a13
2 changed files with 10 additions and 10 deletions

View File

@ -131,35 +131,35 @@ A string with default project scales.
%Docstring
GEOS version number linked
.. versionadded:: 3.18
.. versionadded:: 3.20
%End
static int geosVersionMajor();
%Docstring
GEOS Major version number linked
.. versionadded:: 3.18
.. versionadded:: 3.20
%End
static int geosVersionMinor();
%Docstring
GEOS Minor version number linked
.. versionadded:: 3.18
.. versionadded:: 3.20
%End
static int geosVersionPatch();
%Docstring
GEOS Patch version number linked
.. versionadded:: 3.18
.. versionadded:: 3.20
%End
static QString geosVersion();
%Docstring
GEOS string version linked
.. versionadded:: 3.18
.. versionadded:: 3.20
%End
};

View File

@ -204,35 +204,35 @@ class CORE_EXPORT Qgis
/**
* GEOS version number linked
*
* \since QGIS 3.18
* \since QGIS 3.20
*/
static int geosVersionInt();
/**
* GEOS Major version number linked
*
* \since QGIS 3.18
* \since QGIS 3.20
*/
static int geosVersionMajor();
/**
* GEOS Minor version number linked
*
* \since QGIS 3.18
* \since QGIS 3.20
*/
static int geosVersionMinor();
/**
* GEOS Patch version number linked
*
* \since QGIS 3.18
* \since QGIS 3.20
*/
static int geosVersionPatch();
/**
* GEOS string version linked
*
* \since QGIS 3.18
* \since QGIS 3.20
*/
static QString geosVersion();
};