diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2009-11-10 23:24:45 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2009-11-10 23:24:45 -0500 |
commit | 94ba659ca42e3ab563d5d022c1cb1d7cde2e450c (patch) | |
tree | b774269295bcf483f905648e7c90fcb03cfdca24 /indra/newview | |
parent | 37ac878ec06138e35507f0dd007556cc613ee08f (diff) | |
parent | b854d4d55b410fea30bffa4cc9bd557e3aa35cab (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); } } |