Skip to content

Commit 857f849

Browse files
committed
da60fe fixes #7071
1 parent da60fe1 commit 857f849

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/qgsfieldcalculator.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ void QgsFieldCalculator::accept()
184184
}
185185
else
186186
{
187-
// FIXME workaround while QgsVectorLayer::changeAttributeValue's emitSignal is ignored (see #7190)
187+
// FIXME workaround while QgsVectorLayer::changeAttributeValue's emitSignal is ignored (see #7071)
188188
mVectorLayer->blockSignals( true );
189189
mVectorLayer->changeAttributeValue( feature.id(), mAttributeId, value, false );
190190
mVectorLayer->blockSignals( false );

src/core/qgsvectorlayer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3175,7 +3175,7 @@ bool QgsVectorLayer::changeGeometry( QgsFeatureId fid, QgsGeometry* geom )
31753175

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

0 commit comments

Comments
 (0)