Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix another unicode string on windows
  • Loading branch information
nyalldawson committed Dec 12, 2019
1 parent b613830 commit c847e00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsdatumtransformdialog.cpp
Expand Up @@ -233,7 +233,7 @@ void QgsDatumTransformDialog::load( QPair<int, int> selectedDatumTransforms, con

QString name = transform.name;
if ( !transform.authority.isEmpty() && !transform.code.isEmpty() )
name += QStringLiteral( " — %1:%2" ).arg( transform.authority, transform.code );
name += QStringLiteral( " %1 %2:%3" ).arg( QString( QChar( 0x2013 ) ), transform.authority, transform.code );
item->setText( name );

if ( row == 0 ) // highlight first (preferred) operation
Expand Down

0 comments on commit c847e00

Please sign in to comment.