Skip to content

Commit dd608bb

Browse files
committedOct 15, 2018
More python bindings
1 parent e0697fb commit dd608bb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎src/app/qgsgeometryvalidationservice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,6 @@ void QgsGeometryValidationService::processFeature( QgsVectorLayer *layer, QgsFea
8989

9090
QgsFeature feature = layer->getFeature( fid );
9191
// TODO: this is a bit hardcore
92-
const auto errors = mIsValidGeometryCheck->processGeometry( feature.geometry() );
92+
const auto errors = mIsValidGeometryCheck->processGeometry( feature.geometry(), QVariantMap() );
9393
// emit geometryCheckCompleted( layer, fid, errors );
9494
}

‎src/app/qgsmaplayerstylecategoriesmodel.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ QVariant QgsMapLayerStyleCategoriesModel::data( const QModelIndex &index, int ro
230230
return QVariant();
231231
}
232232
break;
233+
233234
}
234235
return QVariant();
235236
}

0 commit comments

Comments
 (0)
Please sign in to comment.