diff options
author | James Cook <james@lindenlab.com> | 2010-05-28 15:14:29 -0700 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2010-05-28 15:14:29 -0700 |
commit | 3e7f5e571ec223a67cb30ed8ce5cd09c130c3e72 (patch) | |
tree | a98808f7951c6e807a0e6b6e2211424921d17b26 /indra/newview/llfloaterscriptlimits.cpp | |
parent | b944a4792762bf61b7837a29c8580c9823c9670b (diff) |
Code comments/variable names to make clear when legacy names used
Reviewed with Leyla
Diffstat (limited to 'indra/newview/llfloaterscriptlimits.cpp')
-rw-r--r-- | indra/newview/llfloaterscriptlimits.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfloaterscriptlimits.cpp b/indra/newview/llfloaterscriptlimits.cpp index 0149ead92e..f8a5e57389 100644 --- a/indra/newview/llfloaterscriptlimits.cpp +++ b/indra/newview/llfloaterscriptlimits.cpp @@ -730,8 +730,8 @@ void LLPanelScriptLimitsRegionMemory::setRegionDetails(LLSD content) if(std::find(names_requested.begin(), names_requested.end(), owner_id) == names_requested.end()) { names_requested.push_back(owner_id); - gCacheName->get(owner_id, is_group_owned, - boost::bind(&LLPanelScriptLimitsRegionMemory::onNameCache, + gCacheName->get(owner_id, is_group_owned, // username + boost::bind(&LLPanelScriptLimitsRegionMemory::onNameCache, this, _1, _2)); } } |