Skip to content

Commit 0536cfa

Browse files
committed
Merge pull request #1105 from mwa/fix_expression_from_ogc_filter
Fix empty expression when reading from OGC filter
2 parents 810773a + 31c9333 commit 0536cfa

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/core/qgsogcutils.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -1444,6 +1444,9 @@ QgsExpression* QgsOgcUtils::expressionFromOgcFilter( const QDomElement& element
14441444
childElem = childElem.nextSiblingElement();
14451445
}
14461446

1447+
// update expression string
1448+
expr->mExp = expr->dump();
1449+
14471450
return expr;
14481451
}
14491452

0 commit comments

Comments
 (0)