Skip to content

Commit

Permalink
fix feature id handling when opening feature form from identify resul…
Browse files Browse the repository at this point in the history
…ts (fixes #13289)

(cherry picked from commit 5326c6b)
  • Loading branch information
jef-n committed Aug 31, 2015
1 parent 86dcbf2 commit 599632a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsidentifyresultsdialog.cpp
Expand Up @@ -1571,7 +1571,7 @@ void QgsIdentifyResultsDialog::featureForm()
if ( !featItem )
return;

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

QgsFeature f;
Expand Down

2 comments on commit 599632a

@nyalldawson
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jef-n I'm wondering if the auto release scripts are working correctly - shouldn't 2.8.4 have been tagged yesterday? Or did we just miss out by a couple of hours/minutes/seconds?

@jef-n
Copy link
Member Author

@jef-n jef-n commented on 599632a Sep 18, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there are no autorelease scripts

Please sign in to comment.