More elegant solution for last commit (as suggested by Juergen)

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9742 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
mhugent 2008-12-05 07:34:36 +00:00
parent 204a5c6cf4
commit 2de9bfa4c5

View File

@ -1714,15 +1714,7 @@ int QgsVectorLayer::splitFeatures( const QList<QgsPoint>& splitLine, bool topolo
}
}
//we need the feature attributes because the attributes values
//are copied to the new features
QgsAttributeList attributes;
if(mDataProvider)
{
attributes = mDataProvider->attributeIndexes();
}
attributes += mAddedAttributeIds.toList();
select( attributes, bBox, true, true );
select( pendingAllAttributesList(), bBox, true, true );
QgsFeature f;
while ( nextFeature( f ) )