diff options
author | Rider Linden <rider@lindenlab.com> | 2015-09-03 16:59:00 -0700 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2015-09-03 16:59:00 -0700 |
commit | 8913ed6692fddc5d72ee01ecb92a21093c5d22ad (patch) | |
tree | 5b1bedffacdf3f38934d1726d86843ae10021e31 /indra/llui | |
parent | ec998b4c6efee0ddba48481dfba630e18c53a29c (diff) |
Changes from code review with Nat
Diffstat (limited to 'indra/llui')
-rwxr-xr-x | indra/llui/llurlentry.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/llurlentry.cpp b/indra/llui/llurlentry.cpp index e76f2a1550..72ff89f33c 100755 --- a/indra/llui/llurlentry.cpp +++ b/indra/llui/llurlentry.cpp @@ -1430,7 +1430,7 @@ std::string LLUrlEntryExperienceProfile::getLabel( const std::string &url, const return LLTrans::getString("ExperienceNameNull"); } - const LLSD& experience_details = LLExperienceCache::getInstance()->get(experience_id); + const LLSD& experience_details = LLExperienceCache::instance().get(experience_id); if(!experience_details.isUndefined()) { std::string experience_name_string = experience_details[LLExperienceCache::NAME].asString(); @@ -1438,7 +1438,7 @@ std::string LLUrlEntryExperienceProfile::getLabel( const std::string &url, const } addObserver(experience_id_string, url, cb); - LLExperienceCache::getInstance()->get(experience_id, boost::bind(&LLUrlEntryExperienceProfile::onExperienceDetails, this, _1)); + LLExperienceCache::instance().get(experience_id, boost::bind(&LLUrlEntryExperienceProfile::onExperienceDetails, this, _1)); return LLTrans::getString("LoadingData"); } |