summaryrefslogtreecommitdiff
path: root/indra/llui/llnotifications.h
diff options
context:
space:
mode:
authorAndreyL ProductEngine <alihatskiy@productengine.com>2019-09-10 23:21:56 +0300
committerAndreyL ProductEngine <alihatskiy@productengine.com>2019-09-10 23:21:56 +0300
commitb31a93baa83dc232e331a0420800fcb6d7faa2d3 (patch)
treed19b0dcd8340aa15d3ecfb1156ca463ab9a495fc /indra/llui/llnotifications.h
parent83651c49dd42d32bed8f1a3583a61e9226f85f9e (diff)
parent05fcbb5df96c93fa2ba61411c34dcb097ab02c61 (diff)
Upstream merge from lindenlab/viewer-neko
Diffstat (limited to 'indra/llui/llnotifications.h')
-rw-r--r--indra/llui/llnotifications.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llui/llnotifications.h b/indra/llui/llnotifications.h
index 1509446920..62cf41256b 100644
--- a/indra/llui/llnotifications.h
+++ b/indra/llui/llnotifications.h
@@ -180,6 +180,7 @@ public:
Optional<std::string> control;
Optional<bool> invert_control;
Optional<bool> session_only;
+ Optional<bool> checkbox_only;
FormIgnore();
};
@@ -232,7 +233,8 @@ public:
typedef enum e_ignore_type
{
- IGNORE_NO,
+ IGNORE_CHECKBOX_ONLY = -1, // ignore won't be handled, will set value/checkbox only
+ IGNORE_NO = 0,
IGNORE_WITH_DEFAULT_RESPONSE,
IGNORE_WITH_DEFAULT_RESPONSE_SESSION_ONLY,
IGNORE_WITH_LAST_RESPONSE,