Skip to content

Commit

Permalink
da60fe fixes #7071
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Feb 22, 2013
1 parent da60fe1 commit 857f849
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/qgsfieldcalculator.cpp
Expand Up @@ -184,7 +184,7 @@ void QgsFieldCalculator::accept()
}
else
{
// FIXME workaround while QgsVectorLayer::changeAttributeValue's emitSignal is ignored (see #7190)
// FIXME workaround while QgsVectorLayer::changeAttributeValue's emitSignal is ignored (see #7071)
mVectorLayer->blockSignals( true );
mVectorLayer->changeAttributeValue( feature.id(), mAttributeId, value, false );
mVectorLayer->blockSignals( false );
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsvectorlayer.cpp
Expand Up @@ -3175,7 +3175,7 @@ bool QgsVectorLayer::changeGeometry( QgsFeatureId fid, QgsGeometry* geom )

bool QgsVectorLayer::changeAttributeValue( QgsFeatureId fid, int field, QVariant value, bool emitSignal )
{
Q_UNUSED( emitSignal ); // TODO[MD] - see also QgsFieldCalculator and #7190
Q_UNUSED( emitSignal ); // TODO[MD] - see also QgsFieldCalculator and #7071
if ( !mEditBuffer || !mDataProvider )
return false;

Expand Down

0 comments on commit 857f849

Please sign in to comment.