summaryrefslogtreecommitdiff
path: root/indra/llui
diff options
context:
space:
mode:
authorRichard Linden <none@none>2010-10-11 16:33:23 -0700
committerRichard Linden <none@none>2010-10-11 16:33:23 -0700
commitb10744dbee7ffa64180f5558cac874e126045fc8 (patch)
tree2bd3c9fed29357ebe2d01285000cdb7af3791df0 /indra/llui
parent7c256e5a13dc32af12aa5c9f90a1be040e4e64e2 (diff)
fix for default notification form valus not appearing
Diffstat (limited to 'indra/llui')
-rw-r--r--indra/llui/llnotifications.cpp3
-rw-r--r--indra/llui/llnotifications.h1
2 files changed, 3 insertions, 1 deletions
diff --git a/indra/llui/llnotifications.cpp b/indra/llui/llnotifications.cpp
index 916ca24d13..133d12ff22 100644
--- a/indra/llui/llnotifications.cpp
+++ b/indra/llui/llnotifications.cpp
@@ -80,7 +80,8 @@ LLNotificationForm::FormButton::FormButton()
LLNotificationForm::FormInput::FormInput()
: type("type"),
- width("width", 0)
+ width("width", 0),
+ value("value")
{}
LLNotificationForm::FormElement::FormElement()
diff --git a/indra/llui/llnotifications.h b/indra/llui/llnotifications.h
index 5298549b58..3b50d0b2b6 100644
--- a/indra/llui/llnotifications.h
+++ b/indra/llui/llnotifications.h
@@ -194,6 +194,7 @@ public:
{
Mandatory<std::string> type;
Optional<S32> width;
+ Optional<std::string> value;
FormInput();
};