Skip to content

Commit

Permalink
Merge pull request #1105 from mwa/fix_expression_from_ogc_filter
Browse files Browse the repository at this point in the history
Fix empty expression when reading from OGC filter
  • Loading branch information
mhugent committed Jan 23, 2014
2 parents 810773a + 31c9333 commit 0536cfa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/core/qgsogcutils.cpp
Expand Up @@ -1444,6 +1444,9 @@ QgsExpression* QgsOgcUtils::expressionFromOgcFilter( const QDomElement& element
childElem = childElem.nextSiblingElement();
}

// update expression string
expr->mExp = expr->dump();

return expr;
}

Expand Down

0 comments on commit 0536cfa

Please sign in to comment.