diff options
author | James Cook <james@lindenlab.com> | 2010-02-19 15:14:44 -0800 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2010-02-19 15:14:44 -0800 |
commit | d3582dc3ffb1ecb8a8888d17c4196c1c446a9a9a (patch) | |
tree | e6c4ac273ffc4f002cbcc8c1b9740d51d4712f55 /indra/newview/llimview.cpp | |
parent | a5099524e2a89d0162053c7165468b72bcaa2571 (diff) |
IM window titles are Display Name (SLID)
Diffstat (limited to 'indra/newview/llimview.cpp')
-rw-r--r-- | indra/newview/llimview.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 8999aab50a..9ebac16e7f 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -34,6 +34,7 @@ #include "llimview.h" +#include "llavatarnamecache.h" // IDEVO #include "llfloaterreg.h" #include "llfontgl.h" #include "llrect.h" @@ -1940,6 +1941,13 @@ void LLIncomingCallDialog::processCallResponse(S32 response) { if (gCacheName->getFullName(caller_id, correct_session_name)) { + // IDEVO really should be using callbacks here + LLAvatarName av_name; + if (LLAvatarNameCache::useDisplayNames() + && LLAvatarNameCache::get(caller_id, &av_name)) + { + correct_session_name = av_name.mDisplayName + " (" + av_name.mSLID + ")"; + } correct_session_name.append(ADHOC_NAME_SUFFIX); } } |