summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2010-04-22 15:52:29 -0700
committerJames Cook <james@lindenlab.com>2010-04-22 15:52:29 -0700
commitdd8f16b15b07d39a1aa1fb53bf6bae1dfdfb56c3 (patch)
treee01e469ef831f135113dddf19d3166d050d98171 /indra/newview
parent4b93f3d7b913afc32f3c65da6c29365560a40431 (diff)
Remove login.cgi method of turning off display names (we now use caps)
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llstartup.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp
index 5fe091109f..7531853008 100644
--- a/indra/newview/llstartup.cpp
+++ b/indra/newview/llstartup.cpp
@@ -1614,23 +1614,6 @@ bool idle_startup()
LLClassifiedInfo::loadCategories(classified_categories);
}
- bool use_display_names = false;
- LLSD display_names = response["display_names"];
- if (display_names.isDefined())
- {
- for(LLSD::array_const_iterator it = display_names.beginArray(),
- end = display_names.endArray(); it != end; ++it)
- {
- LLSD display_name_version = (*it)["version"];
- if (display_name_version.isDefined()
- && display_name_version.asInteger() > 0)
- {
- use_display_names = true;
- }
- }
- }
- LLAvatarNameCache::setUseDisplayNames(use_display_names);
-
// This method MUST be called before gInventory.findCategoryUUIDForType because of
// gInventory.mIsAgentInvUsable is set to true in the gInventory.buildParentChildMap.
gInventory.buildParentChildMap();