diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2009-11-11 01:36:19 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2009-11-11 01:36:19 -0500 |
commit | 973f0d24096a8249c4891aeb6a55b4c8216a9654 (patch) | |
tree | f88e6a7c1d3b87df670009b56aea7c26c48f9240 /indra/newview/llnamelistctrl.cpp | |
parent | 3cfd8a7ae8fb760fccfc992d8185db7bb37ff4ec (diff) | |
parent | 94ba659ca42e3ab563d5d022c1cb1d7cde2e450c (diff) |
Automated merge with ssh://hg.lindenlab.com/viewer/viewer-2-0/
Diffstat (limited to 'indra/newview/llnamelistctrl.cpp')
-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); } } |