Skip to content

Commit cb766d7

Browse files
committedDec 22, 2018
Make travis happy
1 parent 929df96 commit cb766d7

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed
 

‎python/analysis/auto_generated/vector/geometry_checker/qgssinglegeometrycheck.sip.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,12 @@ Subclasses need to implement the processGeometry method.
127127
#include "qgssinglegeometrycheck.h"
128128
%End
129129
public:
130+
130131
QgsSingleGeometryCheck( const QgsGeometryCheckContext *context,
131132
const QVariantMap &configuration );
133+
%Docstring
134+
Creates a new single geometry check.
135+
%End
132136

133137
virtual void collectErrors( const QMap<QString, QgsFeaturePool *> &featurePools,
134138
QList<QgsGeometryCheckError *> &errors,

‎src/analysis/vector/geometry_checker/qgsgeometrycheck.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,8 @@ class ANALYSIS_EXPORT QgsGeometryCheck
262262
/**
263263
* Returns all layers and feature ids.
264264
*
265-
* \since QGIS 3.4
266265
* \note Not available in Python bindings
266+
* \since QGIS 3.4
267267
*/
268268
QMap<QString, QgsFeatureIds> allLayerFeatureIds( const QMap<QString, QgsFeaturePool *> &featurePools ) const SIP_SKIP;
269269

‎src/analysis/vector/geometry_checker/qgsgeometrycheckfactory.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ class ANALYSIS_EXPORT QgsGeometryCheckFactory SIP_ABSTRACT
8383
};
8484

8585
/**
86+
* \ingroup analysis
8687
* Template to create a factory for a geometry check.
8788
*
8889
* \note Not available in Python bindings.

‎src/analysis/vector/geometry_checker/qgssinglegeometrycheck.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,10 @@ class ANALYSIS_EXPORT QgsGeometryCheckErrorSingle : public QgsGeometryCheckError
145145
class ANALYSIS_EXPORT QgsSingleGeometryCheck : public QgsGeometryCheck
146146
{
147147
public:
148+
149+
/**
150+
* Creates a new single geometry check.
151+
*/
148152
QgsSingleGeometryCheck( const QgsGeometryCheckContext *context,
149153
const QVariantMap &configuration )
150154
: QgsGeometryCheck( context, configuration )

0 commit comments

Comments
 (0)
Please sign in to comment.