diff options
author | Ansariel Hiller <Ansariel@users.noreply.github.com> | 2024-07-27 17:10:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-27 18:10:17 +0300 |
commit | fceec45641cf6a4b7eecaf37ea080a184c279239 (patch) | |
tree | 476463c04099eefef6d2145d9b081f0e25b03683 /indra/newview/llfloaterregioninfo.cpp | |
parent | a1bdef0c159ca2ebf5f2d985d56a541101e3bf6a (diff) |
Fix a bunch of XUI warnings (#2120)
Diffstat (limited to 'indra/newview/llfloaterregioninfo.cpp')
-rw-r--r-- | indra/newview/llfloaterregioninfo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llfloaterregioninfo.cpp b/indra/newview/llfloaterregioninfo.cpp index 02ef342c2a..7869abf66d 100644 --- a/indra/newview/llfloaterregioninfo.cpp +++ b/indra/newview/llfloaterregioninfo.cpp @@ -854,8 +854,9 @@ void LLPanelRegionInfo::initCtrl(const std::string& name) template<typename CTRL> void LLPanelRegionInfo::initAndSetCtrl(CTRL*& ctrl, const std::string& name) { - initCtrl(name); ctrl = findChild<CTRL>(name); + if (ctrl) + ctrl->setCommitCallback(boost::bind(&LLPanelRegionInfo::onChangeAnything, this)); } void LLPanelRegionInfo::onClickManageTelehub() |