Skip to content

Commit

Permalink
Merge pull request #6419 from mhugo/release-2_18
Browse files Browse the repository at this point in the history
Fix call to representValue in identifydialog
  • Loading branch information
Hugo Mercier committed Feb 22, 2018
2 parents 9c2a0f8 + 193e0a7 commit dd56d0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsidentifyresultsdialog.cpp
Expand Up @@ -584,7 +584,7 @@ void QgsIdentifyResultsDialog::addFeature( QgsVectorLayer *vlayer, const QgsFeat
continue;

QString value = fields.at( i ).displayString( attrs.at( i ) );
QString value2 = representValue( vlayer, fields.at( i ).name(), value );
QString value2 = representValue( vlayer, fields.at( i ).name(), attrs.at( i ) );

tblResults->setRowCount( j + 1 );

Expand Down

0 comments on commit dd56d0c

Please sign in to comment.