diff options
author | Paul Guslisty <pguslisty@productengine.com> | 2011-01-19 13:55:39 +0200 |
---|---|---|
committer | Paul Guslisty <pguslisty@productengine.com> | 2011-01-19 13:55:39 +0200 |
commit | ff0e3e6177812cdb6b3e044500d50f5d8d10434a (patch) | |
tree | f666922e58d3b696dc46649d762f67314df0270b /indra | |
parent | b2e4486cf2070e33a9aa6f8cec1a08d93565e52b (diff) |
STORM-547 FIXED Name of blocked person is not presented in list if person was blocked from Inspector
- Replaced method call which returns empty string with member containing display name
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llinspectavatar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinspectavatar.cpp b/indra/newview/llinspectavatar.cpp index 91ede6d221..2bb6dbf277 100644 --- a/indra/newview/llinspectavatar.cpp +++ b/indra/newview/llinspectavatar.cpp @@ -704,7 +704,7 @@ void LLInspectAvatar::onClickShare() void LLInspectAvatar::onToggleMute() { - LLMute mute(mAvatarID, mAvatarName.getLegacyName(), LLMute::AGENT); + LLMute mute(mAvatarID, mAvatarName.mDisplayName, LLMute::AGENT); if (LLMuteList::getInstance()->isMuted(mute.mID, mute.mName)) { |