@@ -26,10 +26,10 @@ class ANALYSIS_EXPORT QgsGeometryOverlapCheckError : public QgsGeometryCheckErro
26
26
{
27
27
public:
28
28
29
- struct OverLappedFeature
29
+ struct OverlappedFeature
30
30
{
31
31
public:
32
- OverLappedFeature ( QgsVectorLayer *vl, QgsFeatureId fid )
32
+ OverlappedFeature ( QgsVectorLayer *vl, QgsFeatureId fid )
33
33
: mLayerId ( vl->id () )
34
34
, mLayerName( vl->name () )
35
35
, mFeatureId( fid )
@@ -38,7 +38,7 @@ class ANALYSIS_EXPORT QgsGeometryOverlapCheckError : public QgsGeometryCheckErro
38
38
QString layerId () const {return mLayerId ;}
39
39
QString layerName () const {return mLayerName ;}
40
40
QgsFeatureId featureId () const {return mFeatureId ;}
41
- bool operator ==( const OverLappedFeature &other ) const {return mLayerId == other.layerId () && mFeatureId == other.featureId ();}
41
+ bool operator ==( const OverlappedFeature &other ) const {return mLayerId == other.layerId () && mFeatureId == other.featureId ();}
42
42
43
43
private:
44
44
QString mLayerId ;
@@ -52,7 +52,7 @@ class ANALYSIS_EXPORT QgsGeometryOverlapCheckError : public QgsGeometryCheckErro
52
52
const QgsPointXY &errorLocation,
53
53
const QVariant &value,
54
54
const QgsGeometryCheckerUtils::LayerFeature &overlappedFeature );
55
- const OverLappedFeature &overlappedFeature () const { return mOverlappedFeature ; }
55
+ const OverlappedFeature &overlappedFeature () const { return mOverlappedFeature ; }
56
56
57
57
bool isEqual ( QgsGeometryCheckError *other ) const override
58
58
{
@@ -87,7 +87,7 @@ class ANALYSIS_EXPORT QgsGeometryOverlapCheckError : public QgsGeometryCheckErro
87
87
QString description () const override ;
88
88
89
89
private:
90
- OverLappedFeature mOverlappedFeature ;
90
+ OverlappedFeature mOverlappedFeature ;
91
91
};
92
92
93
93
class ANALYSIS_EXPORT QgsGeometryOverlapCheck : public QgsGeometryCheck
0 commit comments