Skip to content

Commit 1024c1b

Browse files
3nidsm-kuhn
authored andcommitted
fix typo
1 parent 98843ca commit 1024c1b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/analysis/vector/geometry_checker/qgsgeometryoverlapcheck.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ bool QgsGeometryOverlapCheck::factoryIsCompatible( QgsVectorLayer *layer ) SIP_S
249249

250250
QgsGeometryOverlapCheckError::QgsGeometryOverlapCheckError( const QgsGeometryCheck *check, const QgsGeometryCheckerUtils::LayerFeature &layerFeature, const QgsGeometry &geometry, const QgsPointXY &errorLocation, const QVariant &value, const QgsGeometryCheckerUtils::LayerFeature &overlappedFeature )
251251
: QgsGeometryCheckError( check, layerFeature.layer()->id(), layerFeature.feature().id(), geometry, errorLocation, QgsVertexId(), value, ValueArea )
252-
, mOverlappedFeature( OverLappedFeature( overlappedFeature.layer(), overlappedFeature.feature().id() ) )
252+
, mOverlappedFeature( OverlappedFeature( overlappedFeature.layer(), overlappedFeature.feature().id() ) )
253253
{
254254

255255
}

src/analysis/vector/geometry_checker/qgsgeometryoverlapcheck.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ class ANALYSIS_EXPORT QgsGeometryOverlapCheckError : public QgsGeometryCheckErro
2626
{
2727
public:
2828

29-
struct OverLappedFeature
29+
struct OverlappedFeature
3030
{
3131
public:
32-
OverLappedFeature( QgsVectorLayer *vl, QgsFeatureId fid )
32+
OverlappedFeature( QgsVectorLayer *vl, QgsFeatureId fid )
3333
: mLayerId( vl->id() )
3434
, mLayerName( vl->name() )
3535
, mFeatureId( fid )
@@ -38,7 +38,7 @@ class ANALYSIS_EXPORT QgsGeometryOverlapCheckError : public QgsGeometryCheckErro
3838
QString layerId() const {return mLayerId;}
3939
QString layerName() const {return mLayerName;}
4040
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();}
4242

4343
private:
4444
QString mLayerId;
@@ -52,7 +52,7 @@ class ANALYSIS_EXPORT QgsGeometryOverlapCheckError : public QgsGeometryCheckErro
5252
const QgsPointXY &errorLocation,
5353
const QVariant &value,
5454
const QgsGeometryCheckerUtils::LayerFeature &overlappedFeature );
55-
const OverLappedFeature &overlappedFeature() const { return mOverlappedFeature; }
55+
const OverlappedFeature &overlappedFeature() const { return mOverlappedFeature; }
5656

5757
bool isEqual( QgsGeometryCheckError *other ) const override
5858
{
@@ -87,7 +87,7 @@ class ANALYSIS_EXPORT QgsGeometryOverlapCheckError : public QgsGeometryCheckErro
8787
QString description() const override;
8888

8989
private:
90-
OverLappedFeature mOverlappedFeature;
90+
OverlappedFeature mOverlappedFeature;
9191
};
9292

9393
class ANALYSIS_EXPORT QgsGeometryOverlapCheck : public QgsGeometryCheck

0 commit comments

Comments
 (0)