Skip to content

Commit

Permalink
fix version in doc
Browse files Browse the repository at this point in the history
  • Loading branch information
vcloarec authored and github-actions[bot] committed Apr 26, 2023
1 parent 0df5b07 commit b3e8288
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Expand Up @@ -692,14 +692,14 @@ Sets new renderer settings
%Docstring
Returns whether ``groupIndex`` has existing scalar settings

.. versionadded:: 3.30.1
.. versionadded:: 3.30.2
%End

bool removeScalarSettings( int groupIndex );
%Docstring
Removes scalar settings with ``groupIndex``

.. versionadded:: 3.30.1
.. versionadded:: 3.30.2
%End

QgsMeshRendererVectorSettings vectorSettings( int groupIndex ) const;
Expand All @@ -715,14 +715,14 @@ Sets new renderer settings
%Docstring
Returns whether ``groupIndex`` has existing vector settings

.. versionadded:: 3.30.1
.. versionadded:: 3.30.2
%End

bool removeVectorSettings( int groupIndex );
%Docstring
Removes vector settings for ``groupIndex``

.. versionadded:: 3.30.1
.. versionadded:: 3.30.2
%End

QgsMesh3dAveragingMethod *averagingMethod() const;
Expand Down
8 changes: 4 additions & 4 deletions src/core/mesh/qgsmeshrenderersettings.h
Expand Up @@ -625,13 +625,13 @@ class CORE_EXPORT QgsMeshRendererSettings

/**
* Returns whether \a groupIndex has existing scalar settings
* \since QGIS 3.30.1
* \since QGIS 3.30.2
*/
bool hasScalarSettings( int groupIndex ) const {return mRendererScalarSettings.contains( groupIndex );}

/**
* Removes scalar settings with \a groupIndex
* \since QGIS 3.30.1
* \since QGIS 3.30.2
*/
bool removeScalarSettings( int groupIndex ) {return mRendererScalarSettings.remove( groupIndex );}

Expand All @@ -642,13 +642,13 @@ class CORE_EXPORT QgsMeshRendererSettings

/**
* Returns whether \a groupIndex has existing vector settings
* \since QGIS 3.30.1
* \since QGIS 3.30.2
*/
bool hasVectorSettings( int groupIndex ) const {return mRendererVectorSettings.contains( groupIndex );}

/**
* Removes vector settings for \a groupIndex
* \since QGIS 3.30.1
* \since QGIS 3.30.2
*/
bool removeVectorSettings( int groupIndex ) {return mRendererVectorSettings.remove( groupIndex );}

Expand Down

0 comments on commit b3e8288

Please sign in to comment.