fix for a regression - QgsVectorLayer::featureAtId returns empty attribute map if not in editing mode

git-svn-id: http://svn.osgeo.org/qgis/branches/Version-1_0@9852 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
wonder 2008-12-18 18:59:27 +00:00
parent 58549898d7
commit d888dea7aa

View File

@ -1154,6 +1154,10 @@ void QgsVectorLayer::setSubsetString( QString subset )
void QgsVectorLayer::updateFeatureAttributes( QgsFeature &f )
{
// do not update when we aren't in editing mode
if ( ! mEditable )
return;
if ( mChangedAttributeValues.contains( f.id() ) )
{
const QgsAttributeMap &map = mChangedAttributeValues[f.id()];