diff options
author | Richard Linden <none@none> | 2010-08-25 16:47:07 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2010-08-25 16:47:07 -0700 |
commit | 3604f7fe4b35758db3a730e5efa4a06b2326bdfb (patch) | |
tree | ee8d4d7078c33eb20a773686a1c367e5a2e00cdb /indra/newview/llnamelistctrl.cpp | |
parent | c1405887c982f5a7396892017e4ea426ede9af23 (diff) | |
parent | a0b15c827ee7704c1557c9c882ec236d5d67f948 (diff) |
merge
Diffstat (limited to 'indra/newview/llnamelistctrl.cpp')
-rw-r--r-- | indra/newview/llnamelistctrl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llnamelistctrl.cpp b/indra/newview/llnamelistctrl.cpp index d09f729943..b4c4d4a2ee 100644 --- a/indra/newview/llnamelistctrl.cpp +++ b/indra/newview/llnamelistctrl.cpp @@ -259,7 +259,8 @@ void LLNameListCtrl::addNameItem(LLNameListCtrl::NameItem& item, EAddPosition po LLScrollListItem* LLNameListCtrl::addElement(const LLSD& element, EAddPosition pos, void* userdata) { LLNameListCtrl::NameItem item_params; - LLParamSDParser::instance().readSD(element, item_params); + LLParamSDParser parser; + parser.readSD(element, item_params); item_params.userdata = userdata; return addNameItemRow(item_params, pos); } |