summaryrefslogtreecommitdiff
path: root/indra/llui
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2014-03-14 16:33:47 -0400
committerOz Linden <oz@lindenlab.com>2014-03-14 16:33:47 -0400
commitbc7a579ba285fa64876a2bc116685f0357fe25dc (patch)
treeec7e69960e7e6e50ccc3162dd435d892e6cc34f7 /indra/llui
parent3ee3d4a8f4b74a5f0b75fa54cb8e1cef0b1ef28e (diff)
STORM-1831 initialize LLKeywords::mLoaded in constructor (fixes black-on-black text in various places)
Diffstat (limited to 'indra/llui')
-rwxr-xr-xindra/llui/llkeywords.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/llui/llkeywords.cpp b/indra/llui/llkeywords.cpp
index 9b924c84a9..b4932489b5 100755
--- a/indra/llui/llkeywords.cpp
+++ b/indra/llui/llkeywords.cpp
@@ -67,7 +67,10 @@ inline bool LLKeywordToken::isTail(const llwchar* s) const
return res;
}
-LLKeywords::LLKeywords() { }
+LLKeywords::LLKeywords() :
+ mLoaded(false)
+{
+}
LLKeywords::~LLKeywords()
{