diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-28 10:23:09 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-28 10:23:09 -0800 |
commit | 7ba57dfe101ecd220d9a26a0a2b759305ead0d0f (patch) | |
tree | c025dc27979653ab18863fac19b3c805d6bba833 /indra/llui/llstyle.cpp | |
parent | 9cfc1f33b230f52f194d725a8accc44423f0ad19 (diff) |
CID-324
Checker: UNINIT_CTOR
Function: LLStyle::LLStyle(const LLStyle::Params &)
File: /indra/llui/llstyle.cpp
Diffstat (limited to 'indra/llui/llstyle.cpp')
-rw-r--r-- | indra/llui/llstyle.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/llui/llstyle.cpp b/indra/llui/llstyle.cpp index 71511f69a4..b8f93b6a0e 100644 --- a/indra/llui/llstyle.cpp +++ b/indra/llui/llstyle.cpp @@ -49,7 +49,10 @@ LLStyle::Params::Params() LLStyle::LLStyle(const LLStyle::Params& p) -: mVisible(p.visible), +: mItalic(FALSE), + mBold(FALSE), + mUnderline(FALSE), + mVisible(p.visible), mColor(p.color()), mReadOnlyColor(p.readonly_color()), mFont(p.font()), |