This commit is contained in:
Matthias Kuhn 2019-02-27 17:53:07 +01:00
parent 149fcc040b
commit d99c1f1f32
No known key found for this signature in database
GPG Key ID: 7A7F1A1C90C3E6A7
2 changed files with 2 additions and 10 deletions

View File

@ -162,14 +162,6 @@ Will be used to update existing errors whenever they are re-checked.
%End
virtual QMap<QString, QgsFeatureIds> involvedFeatures() const;
%Docstring
Return a list of involved features.
By default returns an empty map.
The map keys are layer ids, the map value is a set of feature ids.
.. versionadded:: 3.8
%End
protected:

View File

@ -180,13 +180,13 @@ class ANALYSIS_EXPORT QgsGeometryCheckError
virtual bool handleChanges( const QgsGeometryCheck::Changes &changes ) SIP_SKIP;
/**
* Return a list of involved features.
* Returns a list of involved features.
* By default returns an empty map.
* The map keys are layer ids, the map value is a set of feature ids.
*
* \since QGIS 3.8
*/
virtual QMap<QString, QgsFeatureIds> involvedFeatures() const;
virtual QMap<QString, QgsFeatureIds > involvedFeatures() const SIP_SKIP;
protected: