Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix QStringList
  • Loading branch information
root676 authored and nyalldawson committed Apr 13, 2020
1 parent 88df3e4 commit bfa7bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsalgorithmconstantraster.cpp
Expand Up @@ -70,7 +70,7 @@ void QgsConstantRasterAlgorithm::initAlgorithm( const QVariantMap & )
addParameter( new QgsProcessingParameterNumber( QStringLiteral( "NUMBER" ), QObject::tr( "Constant value" ),
QgsProcessingParameterNumber::Double, 1, false ) );

QStringList rasterDataTypes = QStringList(); //currently supported raster data types that can be handled QgsRasterBlock::writeValue()
QStringList rasterDataTypes; //currently supported raster data types that can be handled QgsRasterBlock::writeValue()
rasterDataTypes << QStringLiteral( "Byte" )
<< QStringLiteral( "Integer16" )
<< QStringLiteral( "Unsigned Integer16" )
Expand Down

0 comments on commit bfa7bbd

Please sign in to comment.