Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix travis build
  • Loading branch information
nyalldawson committed Jul 2, 2016
1 parent 85a5969 commit 8af7265
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/qgsvectorlayer.cpp
Expand Up @@ -2985,7 +2985,7 @@ void QgsVectorLayer::uniqueValues( int index, QList<QVariant> &uniqueValues, int
mDataProvider->uniqueValues( index, uniqueValues, limit );
return;
}
FALLTHROUGH

//we need to go through each feature
case QgsFields::OriginJoin:
case QgsFields::OriginExpression:
Expand Down Expand Up @@ -3046,7 +3046,7 @@ QVariant QgsVectorLayer::minimumValue( int index )
return mDataProvider->minimumValue( index );
}
}
FALLTHROUGH

// no choice but to go through all features
case QgsFields::OriginExpression:
case QgsFields::OriginJoin:
Expand Down Expand Up @@ -3104,7 +3104,7 @@ QVariant QgsVectorLayer::maximumValue( int index )
return mDataProvider->maximumValue( index );
}

FALLTHROUGH

//no choice but to go through each feature
case QgsFields::OriginJoin:
case QgsFields::OriginExpression:
Expand Down

0 comments on commit 8af7265

Please sign in to comment.