Add missing break

This commit is contained in:
Matthias Kuhn 2017-10-02 08:51:35 +02:00
parent 60fd763621
commit f781b4f4b5
No known key found for this signature in database
GPG Key ID: A0E766808764D73F

View File

@ -2313,6 +2313,7 @@ bool QgsVectorLayer::changeAttributeValue( QgsFeatureId fid, int field, const QV
{
case QgsFields::OriginJoin:
result = mJoinBuffer->changeAttributeValue( fid, field, newValue, oldValue );
break;
case QgsFields::OriginProvider:
case QgsFields::OriginEdit:
@ -2320,6 +2321,7 @@ bool QgsVectorLayer::changeAttributeValue( QgsFeatureId fid, int field, const QV
{
if ( mEditBuffer && mDataProvider )
result = mEditBuffer->changeAttributeValue( fid, field, newValue, oldValue );
break;
}
case QgsFields::OriginUnknown: