Skip to content

Commit

Permalink
Fix bug #3114
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14444 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Oct 28, 2010
1 parent 1712754 commit 91e805f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsvectorlayer.cpp
Expand Up @@ -1610,7 +1610,7 @@ bool QgsVectorLayer::nextFeature( QgsFeature &f )

for ( QgsFeatureList::iterator it = mAddedFeatures.begin(); it != mAddedFeatures.end(); it++ )
{
if ( fid != it->id() )
if ( fid == it->id() )
{
found = true;
f.setAttributeMap( it->attributeMap() );
Expand Down

0 comments on commit 91e805f

Please sign in to comment.