summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2009-11-10 14:23:07 -0500
committerNat Goodspeed <nat@lindenlab.com>2009-11-10 14:23:07 -0500
commit37806fe4b2c0a83a5e8b1b2e9b7f260da494488e (patch)
treecf90c8cb1c1d166aff1e1203df57a6fd3613b5d3
parenta97aebb84a8b5b43de01fd3823d1b38e711e6ab7 (diff)
Reconcile LLNameListCtrl with new LLInstanceTracker interface
-rw-r--r--indra/newview/llnamelistctrl.cpp4
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);
}
}