diff options
author | Richard Nelson <richard@lindenlab.com> | 2011-09-16 11:57:57 -0700 |
---|---|---|
committer | Richard Nelson <richard@lindenlab.com> | 2011-09-16 11:57:57 -0700 |
commit | c10832bb9ade5efa2a501cb3b39f769aa3024363 (patch) | |
tree | 7ea88940c5e92e500f88ccf4ec0359952f59ed5e /indra/llxuixml/llxuiparser.cpp | |
parent | 2809778bf1a487e2a2786301d7fd651c82290432 (diff) |
added Flag as new param type...
usage: <foo><bar/></foo> will set the bar flag on foo
LLSD foo; foo["bar"]; will set the bar flag on foo
converted notifications unique to use flag
Diffstat (limited to 'indra/llxuixml/llxuiparser.cpp')
-rw-r--r-- | indra/llxuixml/llxuiparser.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/llxuixml/llxuiparser.cpp b/indra/llxuixml/llxuiparser.cpp index 72a7bb7af5..4af077b22c 100644 --- a/indra/llxuixml/llxuiparser.cpp +++ b/indra/llxuixml/llxuiparser.cpp @@ -440,12 +440,11 @@ bool LLXUIParser::readXUIImpl(LLXMLNodePtr nodep, LLInitParam::BaseBlock& block) && nodep->mAttributes.empty() && nodep->getSanitizedValue().empty()) { - // empty node, just parse as NoValue + // empty node, just parse as flag mCurReadNode = DUMMY_NODE; return block.submitValue(mNameStack, *this, silent); } - // submit attributes for current node values_parsed |= readAttributes(nodep, block); |