diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2009-11-10 14:23:07 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2009-11-10 14:23:07 -0500 |
commit | 37806fe4b2c0a83a5e8b1b2e9b7f260da494488e (patch) | |
tree | cf90c8cb1c1d166aff1e1203df57a6fd3613b5d3 /indra/newview | |
parent | a97aebb84a8b5b43de01fd3823d1b38e711e6ab7 (diff) |
Reconcile LLNameListCtrl with new LLInstanceTracker interface
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llnamelistctrl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llnamelistctrl.cpp b/indra/newview/llnamelistctrl.cpp index 541db0ca6e..9439717fb8 100644 --- a/indra/newview/llnamelistctrl.cpp +++ b/indra/newview/llnamelistctrl.cpp @@ -323,8 +323,8 @@ void LLNameListCtrl::refreshAll(const LLUUID& id, const std::string& first, LLInstanceTracker<LLNameListCtrl>::instance_iter it; for (it = beginInstances(); it != endInstances(); ++it) { - LLNameListCtrl* ctrl = *it; - ctrl->refresh(id, first, last, is_group); + LLNameListCtrl& ctrl = *it; + ctrl.refresh(id, first, last, is_group); } } |