diff options
author | angela <angela@lindenlab.com> | 2009-12-03 09:16:29 +0800 |
---|---|---|
committer | angela <angela@lindenlab.com> | 2009-12-03 09:16:29 +0800 |
commit | de9273d80b15ba3cd3bdd2c4f9d6801f4f359238 (patch) | |
tree | d39b6999ab59fc885f7838a42722910d18a4555b /indra/newview/llfloaterbuyland.cpp | |
parent | fb4c3245fd6b6f846c861530f8a093bc4fb2f78b (diff) |
EXT-2854 Replace instances in the viewer with the final search maturity names
Diffstat (limited to 'indra/newview/llfloaterbuyland.cpp')
-rw-r--r-- | indra/newview/llfloaterbuyland.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llfloaterbuyland.cpp b/indra/newview/llfloaterbuyland.cpp index 59985a61ff..3a8c3ab4d2 100644 --- a/indra/newview/llfloaterbuyland.cpp +++ b/indra/newview/llfloaterbuyland.cpp @@ -494,10 +494,14 @@ void LLFloaterBuyLandUI::updateCovenantInfo() LLViewerRegion* region = LLViewerParcelMgr::getInstance()->getSelectionRegion(); if(!region) return; + U8 sim_access = region->getSimAccess(); + std::string rating = LLViewerRegion::accessToString(sim_access); + LLTextBox* region_name = getChild<LLTextBox>("region_name_text"); if (region_name) { - region_name->setText(region->getName()); + std::string region_name_txt = region->getName() + " ("+rating +")"; + region_name->setText(region_name_txt); } LLTextBox* region_type = getChild<LLTextBox>("region_type_text"); |