Skip to content

Commit

Permalink
Fix #4229
Browse files Browse the repository at this point in the history
  • Loading branch information
wonder-sk committed Aug 29, 2011
1 parent e32acf5 commit 883af7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsexpression.cpp
Expand Up @@ -806,7 +806,7 @@ QVariant QgsExpression::NodeInOperator::eval( QgsExpression* parent, QgsFeature*

bool QgsExpression::NodeInOperator::prepare( QgsExpression* parent, const QgsFieldMap& fields )
{
bool res = true;
bool res = mNode->prepare( parent, fields );
foreach( Node* n, mList->list() )
{
res = res && n->prepare( parent, fields );
Expand Down

0 comments on commit 883af7f

Please sign in to comment.