Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
default constructors
- Loading branch information
Showing
with
1 addition
and
3 deletions.
-
+1
−3
src/app/qgsgeometryvalidationservice.h
|
@@ -51,8 +51,7 @@ class QgsGeometryValidationService : public QObject |
|
|
public: |
|
|
struct FeatureError |
|
|
{ |
|
|
FeatureError() |
|
|
{} |
|
|
FeatureError() = default; |
|
|
FeatureError( QgsFeatureId fid, QgsGeometry::Error error ) |
|
|
: featureId( fid ) |
|
|
, error( error ) |
|
@@ -64,7 +63,6 @@ class QgsGeometryValidationService : public QObject |
|
|
typedef QList<FeatureError> FeatureErrors; |
|
|
|
|
|
QgsGeometryValidationService( QgsProject *project ); |
|
|
~QgsGeometryValidationService() = default; |
|
|
|
|
|
void fixError( QgsGeometryCheckError *error, int method ); |
|
|
|
|
|
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.