Skip to content

Commit

Permalink
More python bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Oct 15, 2018
1 parent e0697fb commit dd608bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsgeometryvalidationservice.cpp
Expand Up @@ -89,6 +89,6 @@ void QgsGeometryValidationService::processFeature( QgsVectorLayer *layer, QgsFea

QgsFeature feature = layer->getFeature( fid );
// TODO: this is a bit hardcore
const auto errors = mIsValidGeometryCheck->processGeometry( feature.geometry() );
const auto errors = mIsValidGeometryCheck->processGeometry( feature.geometry(), QVariantMap() );
// emit geometryCheckCompleted( layer, fid, errors );
}
1 change: 1 addition & 0 deletions src/app/qgsmaplayerstylecategoriesmodel.cpp
Expand Up @@ -230,6 +230,7 @@ QVariant QgsMapLayerStyleCategoriesModel::data( const QModelIndex &index, int ro
return QVariant();
}
break;

}
return QVariant();
}
Expand Down

0 comments on commit dd608bb

Please sign in to comment.