Skip to content

Commit 883af7f

Browse files
committedAug 29, 2011
Fix #4229
1 parent e32acf5 commit 883af7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/qgsexpression.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ QVariant QgsExpression::NodeInOperator::eval( QgsExpression* parent, QgsFeature*
806806

807807
bool QgsExpression::NodeInOperator::prepare( QgsExpression* parent, const QgsFieldMap& fields )
808808
{
809-
bool res = true;
809+
bool res = mNode->prepare( parent, fields );
810810
foreach( Node* n, mList->list() )
811811
{
812812
res = res && n->prepare( parent, fields );

0 commit comments

Comments
 (0)
Please sign in to comment.