summaryrefslogtreecommitdiff
path: root/indra/llui/llnotificationtemplate.h
diff options
context:
space:
mode:
authorRichard Nelson <richard@lindenlab.com>2011-09-16 11:57:57 -0700
committerRichard Nelson <richard@lindenlab.com>2011-09-16 11:57:57 -0700
commitc10832bb9ade5efa2a501cb3b39f769aa3024363 (patch)
tree7ea88940c5e92e500f88ccf4ec0359952f59ed5e /indra/llui/llnotificationtemplate.h
parent2809778bf1a487e2a2786301d7fd651c82290432 (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/llui/llnotificationtemplate.h')
-rw-r--r--indra/llui/llnotificationtemplate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/llnotificationtemplate.h b/indra/llui/llnotificationtemplate.h
index eff572b553..ab777d37a5 100644
--- a/indra/llui/llnotificationtemplate.h
+++ b/indra/llui/llnotificationtemplate.h
@@ -88,10 +88,10 @@ struct LLNotificationTemplate
{
private:
// this idiom allows
- // <notification unique="true">
+ // <notification> <unique/> </notification>
// as well as
// <notification> <unique> <context></context> </unique>...
- Optional<bool> dummy_val;
+ Flag dummy_val;
public:
Multiple<UniquenessContext> contexts;