Skip to content

Commit

Permalink
Fix it better
Browse files Browse the repository at this point in the history
  • Loading branch information
borysiasty authored and nyalldawson committed Sep 9, 2022
1 parent 2a04741 commit e954b2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsalgorithmdxfexport.cpp
Expand Up @@ -87,7 +87,7 @@ QVariantMap QgsDxfExportAlgorithm::processAlgorithm( const QVariantMap &paramete

const QgsDxfExport::SymbologyExport symbologyMode = static_cast< QgsDxfExport::SymbologyExport >( parameterAsInt( parameters, QStringLiteral( "SYMBOLOGY_MODE" ), context ) );
const double symbologyScale = parameterAsDouble( parameters, QStringLiteral( "SYMBOLOGY_SCALE" ), context );
const QString encoding = parameterAsString( parameters, QStringLiteral( "ENCODING" ), context );
const QString encoding = parameterAsEnumString( parameters, QStringLiteral( "ENCODING" ), context );
const QgsCoordinateReferenceSystem crs = parameterAsCrs( parameters, QStringLiteral( "CRS" ), context );
const bool useLayerTitle = parameterAsBool( parameters, QStringLiteral( "USE_LAYER_TITLE" ), context );
const bool useMText = parameterAsBool( parameters, QStringLiteral( "MTEXT" ), context );
Expand Down

0 comments on commit e954b2f

Please sign in to comment.