diff options
author | Dessie Linden <dessie@lindenlab.com> | 2011-01-19 12:06:25 -0800 |
---|---|---|
committer | Dessie Linden <dessie@lindenlab.com> | 2011-01-19 12:06:25 -0800 |
commit | 120e64387cc8275de68aca990d186540f5468c89 (patch) | |
tree | d4df26e5c9ad7d75ab4fc7cf5fb725b24e299837 /indra/newview/llimview.cpp | |
parent | 224a63edbe04ec7662cc7351d882cfbcb36884a0 (diff) | |
parent | 6b7a7081c31607bada575dd2f0a226bc5d721fc2 (diff) |
Removed accidental changeset id tag
Diffstat (limited to 'indra/newview/llimview.cpp')
-rw-r--r-- | indra/newview/llimview.cpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index ce305dcd89..9623554200 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -279,20 +279,20 @@ LLIMModel::LLIMSession::LLIMSession(const LLUUID& session_id, const std::string& void LLIMModel::LLIMSession::onAdHocNameCache(const LLAvatarName& av_name) { - if (av_name.mIsDummy) - {
- S32 separator_index = mName.rfind(" ");
- std::string name = mName.substr(0, separator_index);
- ++separator_index;
- std::string conference_word = mName.substr(separator_index, mName.length());
-
- // additional check that session name is what we expected
- if ("Conference" == conference_word)
- {
- LLStringUtil::format_map_t args;
- args["[AGENT_NAME]"] = name;
- LLTrans::findString(mName, "conference-title-incoming", args);
- }
+ if (av_name.mIsTemporaryName) + { + S32 separator_index = mName.rfind(" "); + std::string name = mName.substr(0, separator_index); + ++separator_index; + std::string conference_word = mName.substr(separator_index, mName.length()); + + // additional check that session name is what we expected + if ("Conference" == conference_word) + { + LLStringUtil::format_map_t args; + args["[AGENT_NAME]"] = name; + LLTrans::findString(mName, "conference-title-incoming", args); + } } else { |