Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make travis happy
  • Loading branch information
m-kuhn committed Dec 22, 2018
1 parent 929df96 commit cb766d7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
Expand Up @@ -127,8 +127,12 @@ Subclasses need to implement the processGeometry method.
#include "qgssinglegeometrycheck.h"
%End
public:

QgsSingleGeometryCheck( const QgsGeometryCheckContext *context,
const QVariantMap &configuration );
%Docstring
Creates a new single geometry check.
%End

virtual void collectErrors( const QMap<QString, QgsFeaturePool *> &featurePools,
QList<QgsGeometryCheckError *> &errors,
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/vector/geometry_checker/qgsgeometrycheck.h
Expand Up @@ -262,8 +262,8 @@ class ANALYSIS_EXPORT QgsGeometryCheck
/**
* Returns all layers and feature ids.
*
* \since QGIS 3.4
* \note Not available in Python bindings
* \since QGIS 3.4
*/
QMap<QString, QgsFeatureIds> allLayerFeatureIds( const QMap<QString, QgsFeaturePool *> &featurePools ) const SIP_SKIP;

Expand Down
Expand Up @@ -83,6 +83,7 @@ class ANALYSIS_EXPORT QgsGeometryCheckFactory SIP_ABSTRACT
};

/**
* \ingroup analysis
* Template to create a factory for a geometry check.
*
* \note Not available in Python bindings.
Expand Down
4 changes: 4 additions & 0 deletions src/analysis/vector/geometry_checker/qgssinglegeometrycheck.h
Expand Up @@ -145,6 +145,10 @@ class ANALYSIS_EXPORT QgsGeometryCheckErrorSingle : public QgsGeometryCheckError
class ANALYSIS_EXPORT QgsSingleGeometryCheck : public QgsGeometryCheck
{
public:

/**
* Creates a new single geometry check.
*/
QgsSingleGeometryCheck( const QgsGeometryCheckContext *context,
const QVariantMap &configuration )
: QgsGeometryCheck( context, configuration )
Expand Down

0 comments on commit cb766d7

Please sign in to comment.