Skip to content

Commit

Permalink
fix utf string
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Apr 2, 2014
1 parent 78e59c9 commit b9a539e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsvectorlayerproperties.cpp
Expand Up @@ -1025,7 +1025,7 @@ void QgsVectorLayerProperties::addJoinToTreeWidget( const QgsVectorJoinInfo& joi
joinItem->setText( 2, join.targetFieldName );

if ( join.memoryCache )
joinItem->setText( 3, QString::fromUtf8( "\u2714" ) );
joinItem->setText( 3, QChar( 0x2714 ) );

mJoinTreeWidget->addTopLevelItem( joinItem );
for ( int c = 0; c < 3; c++ )
Expand Down

0 comments on commit b9a539e

Please sign in to comment.