diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2009-11-10 16:21:55 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2009-11-10 16:21:55 -0500 |
commit | 7d16f84493e8662beeaf9bb5fc120d46add996e4 (patch) | |
tree | 7bcdfea77d5bab067ee853697d9ea314684b139c /indra/newview | |
parent | 25d8cf689aa04a1bd4ebb336714730d29040d05c (diff) | |
parent | 65d8b9cfe56bb1bd62ee4ceabffa617e751b02d0 (diff) |
Automated merge with ssh://hg.lindenlab.com/viewer/viewer-2-0/
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); } } |