Skip to content

Commit dd56d0c

Browse files
author
Hugo Mercier
authoredFeb 22, 2018
Merge pull request #6419 from mhugo/release-2_18
Fix call to representValue in identifydialog
2 parents 9c2a0f8 + 193e0a7 commit dd56d0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/qgsidentifyresultsdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ void QgsIdentifyResultsDialog::addFeature( QgsVectorLayer *vlayer, const QgsFeat
584584
continue;
585585

586586
QString value = fields.at( i ).displayString( attrs.at( i ) );
587-
QString value2 = representValue( vlayer, fields.at( i ).name(), value );
587+
QString value2 = representValue( vlayer, fields.at( i ).name(), attrs.at( i ) );
588588

589589
tblResults->setRowCount( j + 1 );
590590

0 commit comments

Comments
 (0)
Please sign in to comment.