diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-02-21 17:40:40 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-02-21 17:40:40 -0500 |
commit | 04caf8c8764c0a433121acef6c7b7396c43550b2 (patch) | |
tree | 9c61766dd1e01d4b15e965268d0fc3c25adef083 /indra/newview/llappearancemgr.cpp | |
parent | 89752e76495e2b553fb92165499baccb245860c6 (diff) |
SH-2689 WIP - move first_fully_visible static into avatar class, bake-related logging
Diffstat (limited to 'indra/newview/llappearancemgr.cpp')
-rwxr-xr-x | indra/newview/llappearancemgr.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index fe2a7bcb2d..e37a577460 100755 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -52,12 +52,7 @@ std::string self_av_string() { - static std::string av_name_string = ""; - if (av_name_string.empty() && gAgentAvatarp) - { - av_name_string = " Avatar '" + gAgentAvatarp->getFullname() + "' "; - } - return av_name_string; + return gAgentAvatarp->avString(); } // RAII thingy to guarantee that a variable gets reset when the Setter |