summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorTofu Linden <tofu.linden@lindenlab.com>2010-01-28 10:23:09 -0800
committerTofu Linden <tofu.linden@lindenlab.com>2010-01-28 10:23:09 -0800
commit7ba57dfe101ecd220d9a26a0a2b759305ead0d0f (patch)
treec025dc27979653ab18863fac19b3c805d6bba833 /indra
parent9cfc1f33b230f52f194d725a8accc44423f0ad19 (diff)
CID-324
Checker: UNINIT_CTOR Function: LLStyle::LLStyle(const LLStyle::Params &) File: /indra/llui/llstyle.cpp
Diffstat (limited to 'indra')
-rw-r--r--indra/llui/llstyle.cpp5
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()),