Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
m-kuhn committed Feb 27, 2019
1 parent 149fcc0 commit d99c1f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
Expand Up @@ -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:

Expand Down
4 changes: 2 additions & 2 deletions src/analysis/vector/geometry_checker/qgsgeometrycheckerror.h
Expand Up @@ -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:

Expand Down

0 comments on commit d99c1f1

Please sign in to comment.