diff options
author | Loren Shih <seraph@lindenlab.com> | 2010-06-17 17:43:22 -0400 |
---|---|---|
committer | Loren Shih <seraph@lindenlab.com> | 2010-06-17 17:43:22 -0400 |
commit | d3b9c8944b7730b54796ef79cd78d62fd585fe42 (patch) | |
tree | 45f6b8ca78e3fe931c793f5ffbfdbfe207532e29 /indra/llui/llaccordionctrl.h | |
parent | 408484d0c133627a1a5e3586aa34015d89b23379 (diff) | |
parent | 8d84b6e82d17eb11622b3d80254ccc4ac15c5bec (diff) |
automated merge
Diffstat (limited to 'indra/llui/llaccordionctrl.h')
-rw-r--r-- | indra/llui/llaccordionctrl.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/indra/llui/llaccordionctrl.h b/indra/llui/llaccordionctrl.h index 677b598a32..3ad5274085 100644 --- a/indra/llui/llaccordionctrl.h +++ b/indra/llui/llaccordionctrl.h @@ -78,12 +78,14 @@ public: accordion tabs are responsible for scrolling their content. *NOTE fit_parent works best when combined with single_expansion. Accordion view should implement getRequiredRect() and provide valid height*/ - Optional<LLTextBox::Params> empty_accordion_text; + Optional<LLTextBox::Params> no_matched_tabs_text; + Optional<LLTextBox::Params> no_visible_tabs_text; Params() : single_expansion("single_expansion",false) , fit_parent("fit_parent", false) - , empty_accordion_text("empty_accordion_text") + , no_matched_tabs_text("no_matched_tabs_text") + , no_visible_tabs_text("no_visible_tabs_text") {}; }; @@ -180,6 +182,8 @@ private: bool mAutoScrolling; F32 mAutoScrollRate; LLTextBox* mNoVisibleTabsHelpText; + + std::string mNoMatchedTabsOrigString; std::string mNoVisibleTabsOrigString; LLAccordionCtrlTab* mSelectedTab; |