Skip to content

Commit 26aa007

Browse files
committedAug 27, 2011
Fixed build error
1 parent 30f1153 commit 26aa007

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/symbology-ng/qgsrulebasedrendererv2.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ QgsSymbolV2* QgsRuleBasedRendererV2::symbolForFeature( QgsFeature& feature )
136136
{
137137
Rule* rule = *it;
138138

139-
if ( rule->isFilterOK( mCurrentFields, feature ) )
139+
if ( rule->isFilterOK( feature ) )
140140
{
141141
return rule->symbol(); //works with levels but takes only first rule
142142
}

0 commit comments

Comments
 (0)
Please sign in to comment.