summaryrefslogtreecommitdiff
path: root/indra/llui
diff options
context:
space:
mode:
authorRichard Linden <none@none>2010-02-09 17:19:26 -0800
committerRichard Linden <none@none>2010-02-09 17:19:26 -0800
commitb1099e21600c8d2c4584ef8f3696ddc5f42c936b (patch)
tree58a713e8d0356b4d07379576bc392533318d20e0 /indra/llui
parent86923afd27d76734cf1274fa788928230c232a4d (diff)
fix for invalid param 'name' warnings
Diffstat (limited to 'indra/llui')
-rw-r--r--indra/llui/llui.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/llui.h b/indra/llui/llui.h
index 5840e76f5c..af8d4ea03b 100644
--- a/indra/llui/llui.h
+++ b/indra/llui/llui.h
@@ -426,8 +426,8 @@ namespace LLInitParam
{
typedef BlockValue<const LLFontGL*> super_t;
public:
- Mandatory<std::string> name;
- Optional<std::string> size,
+ Optional<std::string> name,
+ size,
style;
TypedParam(BlockDescriptor& descriptor, const char* name, const LLFontGL* const value, ParamDescriptor::validation_func_t func, S32 min_count, S32 max_count);