aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llui/llpanel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llui/llpanel.cpp')
-rw-r--r--linden/indra/llui/llpanel.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/linden/indra/llui/llpanel.cpp b/linden/indra/llui/llpanel.cpp
index 3a0ee9b..ca1bc9c 100644
--- a/linden/indra/llui/llpanel.cpp
+++ b/linden/indra/llui/llpanel.cpp
@@ -982,6 +982,16 @@ BOOL LLPanel::childSetLabelArg(const LLString& id, const LLString& key, const LL
982 return FALSE; 982 return FALSE;
983} 983}
984 984
985BOOL LLPanel::childSetToolTipArg(const LLString& id, const LLString& key, const LLStringExplicit& text)
986{
987 LLView* child = getChildByName(id, true);
988 if (child)
989 {
990 return child->setToolTipArg(key, text);
991 }
992 return FALSE;
993}
994
985void LLPanel::childSetMinValue(const LLString& id, LLSD min_value) 995void LLPanel::childSetMinValue(const LLString& id, LLSD min_value)
986{ 996{
987 LLUICtrl* child = (LLUICtrl*)getChildByName(id, true); 997 LLUICtrl* child = (LLUICtrl*)getChildByName(id, true);