diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-01-11 13:52:40 +0200 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-01-11 13:52:40 +0200 |
commit | 2f40972dd84560de26a9d2dcaaff377e15c1de37 (patch) | |
tree | eb64d76933dc32637c367cc1c951ffa09bf15d30 /indra/llui/llurlentry.cpp | |
parent | 13f8f5dd3060388ee1814246722bba17ccea62b4 (diff) |
MAINT-7031 /displayname & /completename should perform regardless of "View Display Names" viewer setting.
Diffstat (limited to 'indra/llui/llurlentry.cpp')
-rw-r--r-- | indra/llui/llurlentry.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/llurlentry.cpp b/indra/llui/llurlentry.cpp index b5a31f5118..05b7a4a9e9 100644 --- a/indra/llui/llurlentry.cpp +++ b/indra/llui/llurlentry.cpp @@ -764,7 +764,7 @@ LLUrlEntryAgentCompleteName::LLUrlEntryAgentCompleteName() std::string LLUrlEntryAgentCompleteName::getName(const LLAvatarName& avatar_name) { - return avatar_name.getCompleteName(); + return avatar_name.getCompleteName(true, true); } // @@ -780,7 +780,7 @@ LLUrlEntryAgentDisplayName::LLUrlEntryAgentDisplayName() std::string LLUrlEntryAgentDisplayName::getName(const LLAvatarName& avatar_name) { - return avatar_name.getDisplayName(); + return avatar_name.getDisplayName(true); } // |