Skip to content

Commit

Permalink
Geometry Checker: Enlarge FeatureID from string(10) to string(20). Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lbartoletti authored and nyalldawson committed Sep 24, 2021
1 parent 2aa478b commit ed708e6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -247,7 +247,7 @@ bool QgsGeometryCheckerResultTab::exportErrorsDo( const QString &file )
{
QList< QPair<QString, QString> > attributes;
attributes.append( qMakePair( QStringLiteral( "Layer" ), QStringLiteral( "String;30;" ) ) );
attributes.append( qMakePair( QStringLiteral( "FeatureID" ), QStringLiteral( "String;10;" ) ) );
attributes.append( qMakePair( QStringLiteral( "FeatureID" ), QStringLiteral( "String;20;" ) ) );
attributes.append( qMakePair( QStringLiteral( "ErrorDesc" ), QStringLiteral( "String;80;" ) ) );

QFileInfo fi( file );
Expand Down

0 comments on commit ed708e6

Please sign in to comment.