diff options
author | Richard Linden <none@none> | 2010-07-16 17:13:17 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2010-07-16 17:13:17 -0700 |
commit | b73ef2f338804f542cf7cc87a834462ee541e4c3 (patch) | |
tree | f4b21a4f65b53e0ded141ae80e72bcc14ce3b0c8 /indra/llui/llstyle.cpp | |
parent | 7844914b03c062596812cdad1feffff700bcd45c (diff) | |
parent | 109ff259ca4f2d2d9d7d4b6e8120bf201736b434 (diff) |
merge
Diffstat (limited to 'indra/llui/llstyle.cpp')
-rw-r--r-- | indra/llui/llstyle.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/indra/llui/llstyle.cpp b/indra/llui/llstyle.cpp index b8f93b6a0e..d63f67b4c1 100644 --- a/indra/llui/llstyle.cpp +++ b/indra/llui/llstyle.cpp @@ -42,6 +42,8 @@ LLStyle::Params::Params() : visible("visible", true), drop_shadow("drop_shadow", LLFontGL::NO_SHADOW), color("color", LLColor4::black), + readonly_color("readonly_color", LLColor4::black), + selected_color("selected_color", LLColor4::black), font("font", LLFontGL::getFontMonospace()), image("image"), link_href("href") @@ -49,12 +51,10 @@ LLStyle::Params::Params() LLStyle::LLStyle(const LLStyle::Params& p) -: mItalic(FALSE), - mBold(FALSE), - mUnderline(FALSE), - mVisible(p.visible), - mColor(p.color()), - mReadOnlyColor(p.readonly_color()), +: mVisible(p.visible), + mColor(p.color), + mReadOnlyColor(p.readonly_color), + mSelectedColor(p.selected_color), mFont(p.font()), mLink(p.link_href), mDropShadow(p.drop_shadow), |