diff options
author | Oz Linden <oz@lindenlab.com> | 2014-03-14 16:33:47 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2014-03-14 16:33:47 -0400 |
commit | bc7a579ba285fa64876a2bc116685f0357fe25dc (patch) | |
tree | ec7e69960e7e6e50ccc3162dd435d892e6cc34f7 /indra/llui/llkeywords.cpp | |
parent | 3ee3d4a8f4b74a5f0b75fa54cb8e1cef0b1ef28e (diff) |
STORM-1831 initialize LLKeywords::mLoaded in constructor (fixes black-on-black text in various places)
Diffstat (limited to 'indra/llui/llkeywords.cpp')
-rwxr-xr-x | indra/llui/llkeywords.cpp | 5 |
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() { |