Skip to content

Commit

Permalink
Use QVariant
Browse files Browse the repository at this point in the history
  • Loading branch information
lbartoletti authored and nyalldawson committed Jul 27, 2021
1 parent 9b06a22 commit 9600a6b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -84,7 +84,7 @@ void QgsAddIncrementalFieldAlgorithm::initParameters( const QVariantMap & )
addParameter( new QgsProcessingParameterNumber( QStringLiteral( "START" ), QObject::tr( "Start values at" ),
QgsProcessingParameterNumber::Integer, 0, true ) );
addParameter( new QgsProcessingParameterNumber( QStringLiteral( "MODULUS" ), QObject::tr( "Modulus value" ),
QgsProcessingParameterNumber::Integer, 0, true ) );
QgsProcessingParameterNumber::Integer, QVariant( 0 ), true ) );
addParameter( new QgsProcessingParameterField( QStringLiteral( "GROUP_FIELDS" ), QObject::tr( "Group values by" ), QVariant(),
QStringLiteral( "INPUT" ), QgsProcessingParameterField::Any, true, true ) );

Expand Down

0 comments on commit 9600a6b

Please sign in to comment.