Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b3e8288

Browse files
vcloarecgithub-actions[bot]
authored andcommittedApr 26, 2023
fix version in doc
1 parent 0df5b07 commit b3e8288

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed
 

‎python/core/auto_generated/mesh/qgsmeshrenderersettings.sip.in

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -692,14 +692,14 @@ Sets new renderer settings
692692
%Docstring
693693
Returns whether ``groupIndex`` has existing scalar settings
694694

695-
.. versionadded:: 3.30.1
695+
.. versionadded:: 3.30.2
696696
%End
697697

698698
bool removeScalarSettings( int groupIndex );
699699
%Docstring
700700
Removes scalar settings with ``groupIndex``
701701

702-
.. versionadded:: 3.30.1
702+
.. versionadded:: 3.30.2
703703
%End
704704

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

718-
.. versionadded:: 3.30.1
718+
.. versionadded:: 3.30.2
719719
%End
720720

721721
bool removeVectorSettings( int groupIndex );
722722
%Docstring
723723
Removes vector settings for ``groupIndex``
724724

725-
.. versionadded:: 3.30.1
725+
.. versionadded:: 3.30.2
726726
%End
727727

728728
QgsMesh3dAveragingMethod *averagingMethod() const;

‎src/core/mesh/qgsmeshrenderersettings.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -625,13 +625,13 @@ class CORE_EXPORT QgsMeshRendererSettings
625625

626626
/**
627627
* Returns whether \a groupIndex has existing scalar settings
628-
* \since QGIS 3.30.1
628+
* \since QGIS 3.30.2
629629
*/
630630
bool hasScalarSettings( int groupIndex ) const {return mRendererScalarSettings.contains( groupIndex );}
631631

632632
/**
633633
* Removes scalar settings with \a groupIndex
634-
* \since QGIS 3.30.1
634+
* \since QGIS 3.30.2
635635
*/
636636
bool removeScalarSettings( int groupIndex ) {return mRendererScalarSettings.remove( groupIndex );}
637637

@@ -642,13 +642,13 @@ class CORE_EXPORT QgsMeshRendererSettings
642642

643643
/**
644644
* Returns whether \a groupIndex has existing vector settings
645-
* \since QGIS 3.30.1
645+
* \since QGIS 3.30.2
646646
*/
647647
bool hasVectorSettings( int groupIndex ) const {return mRendererVectorSettings.contains( groupIndex );}
648648

649649
/**
650650
* Removes vector settings for \a groupIndex
651-
* \since QGIS 3.30.1
651+
* \since QGIS 3.30.2
652652
*/
653653
bool removeVectorSettings( int groupIndex ) {return mRendererVectorSettings.remove( groupIndex );}
654654

0 commit comments

Comments
 (0)
Please sign in to comment.