diff options
author | David E. Narvaez <david.narvaez@computer.org> | 2015-06-21 22:24:39 -0400 |
---|---|---|
committer | Erik Verbruggen <erik.verbruggen@theqtcompany.com> | 2015-07-29 07:51:22 +0000 |
commit | d17eba9d34f412e592c3b049c6c14fd9ccada87b (patch) | |
tree | 32f16a5ae2272b7d5dfa6c25b53b8aa06cf98330 /src/xmlpatterns/expr/qliteralsequence.cpp | |
parent | 69c539045191d02a07ff3471bd37486ccf226b18 (diff) | |
download | qtxmlpatterns-d17eba9d34f412e592c3b049c6c14fd9ccada87b.tar.gz |
Iterate Over the Items (Not the Operands) of a Literal Sequence
The current code iterates over the (empty) list of operands of a Literal
Sequence, ignoring any items in it, so Literal Sequences are always
ignored in the ExpressionSequence.
Task-number: QTBUG-35897
Change-Id: I60341ac21c8e3b77bf6d8dfeebdbafe010844406
Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
Diffstat (limited to 'src/xmlpatterns/expr/qliteralsequence.cpp')
-rw-r--r-- | src/xmlpatterns/expr/qliteralsequence.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmlpatterns/expr/qliteralsequence.cpp b/src/xmlpatterns/expr/qliteralsequence.cpp index e0b610d..8c920d3 100644 --- a/src/xmlpatterns/expr/qliteralsequence.cpp +++ b/src/xmlpatterns/expr/qliteralsequence.cpp @@ -73,7 +73,7 @@ ExpressionVisitorResult::Ptr LiteralSequence::accept(const ExpressionVisitor::Pt Expression::ID LiteralSequence::id() const { - return IDExpressionSequence; + return IDLiteralSequence; } Expression::Properties LiteralSequence::properties() const |