Skip to content

Commit 8b734c8

Browse files
committedAug 31, 2015
fix feature id handling when opening feature form from identify results (fixes #13289)
(cherry picked from commit 5326c6b)
1 parent fce7705 commit 8b734c8

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
@@ -1580,7 +1580,7 @@ void QgsIdentifyResultsDialog::featureForm()
15801580
if ( !featItem )
15811581
return;
15821582

1583-
int fid = STRING_TO_FID( featItem->data( 0, Qt::UserRole ) );
1583+
QgsFeatureId fid = STRING_TO_FID( featItem->data( 0, Qt::UserRole ) );
15841584
int idx = featItem->data( 0, Qt::UserRole + 1 ).toInt();
15851585

15861586
QgsFeature f;

0 commit comments

Comments
 (0)
Please sign in to comment.