Skip to content

Commit a804a33

Browse files
committed
Remove some useless \returns dox
1 parent 2a7b854 commit a804a33

File tree

3 files changed

+6
-50
lines changed

3 files changed

+6
-50
lines changed

python/gui/auto_generated/attributetable/qgsifeatureselectionmanager.sip.in

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,17 @@ e.g. QgsVectorLayer implements this interface to manage its selections.
2525
QgsIFeatureSelectionManager( QObject *parent /TransferThis/ );
2626
virtual int selectedFeatureCount() = 0;
2727
%Docstring
28-
The number of features that are selected in this layer
29-
30-
:return: See description
28+
Returns the number of features that are selected in this layer.
3129
%End
3230

3331
virtual void select( const QgsFeatureIds &ids ) = 0;
3432
%Docstring
35-
Select features
36-
37-
:param ids: Feature ids to select
33+
Select features by feature ``ids``.
3834
%End
3935

4036
virtual void deselect( const QgsFeatureIds &ids ) = 0;
4137
%Docstring
42-
Deselect features
43-
44-
:param ids: Feature ids to deselect
38+
Deselect features by feature ``ids``.
4539
%End
4640

4741
virtual void setSelectedFeatures( const QgsFeatureIds &ids ) = 0;

src/gui/attributetable/qgsifeatureselectionmanager.h

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,23 +38,17 @@ class GUI_EXPORT QgsIFeatureSelectionManager : public QObject
3838
: QObject( parent ) {}
3939

4040
/**
41-
* The number of features that are selected in this layer
42-
*
43-
* \returns See description
41+
* Returns the number of features that are selected in this layer.
4442
*/
4543
virtual int selectedFeatureCount() = 0;
4644

4745
/**
48-
* Select features
49-
*
50-
* \param ids Feature ids to select
46+
* Select features by feature \a ids.
5147
*/
5248
virtual void select( const QgsFeatureIds &ids ) = 0;
5349

5450
/**
55-
* Deselect features
56-
*
57-
* \param ids Feature ids to deselect
51+
* Deselect features by feature \a ids.
5852
*/
5953
virtual void deselect( const QgsFeatureIds &ids ) = 0;
6054

src/gui/attributetable/qgsvectorlayerselectionmanager.h

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -36,42 +36,10 @@ class GUI_EXPORT QgsVectorLayerSelectionManager : public QgsIFeatureSelectionMan
3636
public:
3737
explicit QgsVectorLayerSelectionManager( QgsVectorLayer *layer, QObject *parent = nullptr );
3838

39-
/**
40-
* The number of features that are selected in this layer
41-
*
42-
* \returns See description
43-
*/
4439
int selectedFeatureCount() override;
45-
46-
/**
47-
* Select features
48-
*
49-
* \param ids Feature ids to select
50-
*/
5140
void select( const QgsFeatureIds &ids ) override;
52-
53-
/**
54-
* Deselect features
55-
*
56-
* \param ids Feature ids to deselect
57-
*/
5841
void deselect( const QgsFeatureIds &ids ) override;
59-
60-
/**
61-
* Change selection to the new set of features. Dismisses the current selection.
62-
* Will emit the selectionChanged( const QgsFeatureIds&, const QgsFeatureIds&, bool ) signal with the
63-
* clearAndSelect flag set.
64-
*
65-
* \param ids The ids which will be the new selection
66-
*/
6742
void setSelectedFeatures( const QgsFeatureIds &ids ) override;
68-
69-
/**
70-
* Returns reference to identifiers of selected features
71-
*
72-
* \returns A list of QgsFeatureIds
73-
* \see selectedFeatures()
74-
*/
7543
const QgsFeatureIds &selectedFeatureIds() const override;
7644

7745
private:

0 commit comments

Comments
 (0)