diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2009-11-10 18:13:40 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2009-11-10 18:13:40 -0500 |
commit | 48163bdc5e805c8ea6248b466edab0904f87f04b (patch) | |
tree | 47b368e9a8bc92131471c0166b29e607c3200a42 /indra/newview/llnamelistctrl.cpp | |
parent | 02943eca33a2cb5be39025557ca6e7aca30ea93a (diff) | |
parent | f8ddc9a8cec7a8e675045d84212d4623c71c6691 (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); } } |