Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Geometry Checker] Fix availableResolutionMethods()
  • Loading branch information
agiudiceandrea authored and github-actions[bot] committed Apr 3, 2023
1 parent 54498f0 commit 52c1e94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/analysis/vector/geometry_checker/qgsgeometrycheck.cpp
Expand Up @@ -65,10 +65,10 @@ QList<QgsGeometryCheckResolutionMethod> QgsGeometryCheck::availableResolutionMet
const QStringList methods = resolutionMethods();
Q_NOWARN_DEPRECATED_POP

const int i = 0;
int i = 0;
for ( const QString &method : methods )
{
fixes.append( QgsGeometryCheckResolutionMethod( i, method, QString(), false ) );
fixes.append( QgsGeometryCheckResolutionMethod( i++, method, QString(), false ) );
}

return fixes;
Expand Down

0 comments on commit 52c1e94

Please sign in to comment.