Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
m-kuhn committed Mar 18, 2019
1 parent 29a6273 commit 8907d9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
Expand Up @@ -76,14 +76,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:
QgsGeometryCheckError( const QgsGeometryCheck *check,
Expand Down
4 changes: 2 additions & 2 deletions src/analysis/vector/geometry_checker/qgsgeometrycheckerror.h
Expand Up @@ -94,13 +94,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:
// Users of this constructor must ensure geometry and errorLocation are in map coordinates
Expand Down

0 comments on commit 8907d9c

Please sign in to comment.