diff options
| author | James Cook <james@lindenlab.com> | 2010-05-12 16:32:25 -0700 | 
|---|---|---|
| committer | James Cook <james@lindenlab.com> | 2010-05-12 16:32:25 -0700 | 
| commit | bee1a091469f8d1f2277e8d5b4cc9981e8060bde (patch) | |
| tree | d27f94163469f92693ba80e5f83189aebdcd0613 | |
| parent | ab79144d7937b12677d0a19145e3fc958e4c659c (diff) | |
DEV-50013 IM window titles use correct name lookup method
| -rw-r--r-- | indra/newview/llavataractions.cpp | 65 | 
1 files changed, 28 insertions, 37 deletions
| diff --git a/indra/newview/llavataractions.cpp b/indra/newview/llavataractions.cpp index 85a087d6f6..fe6ca60d7c 100644 --- a/indra/newview/llavataractions.cpp +++ b/indra/newview/llavataractions.cpp @@ -187,28 +187,11 @@ void LLAvatarActions::offerTeleport(const uuid_vec_t& ids)  	handle_lure(ids);  } -// static -void LLAvatarActions::startIM(const LLUUID& id) +static void on_avatar_name_cache_start_im(const LLUUID& agent_id, +										  const LLAvatarName& av_name)  { -	if (id.isNull()) -		return; - -	std::string name; -	if (!gCacheName->getFullName(id, name)) -	{ -		gCacheName->get(id, FALSE, boost::bind(&LLAvatarActions::startIM, id)); -		return; -	} - -	// IDEVO -	LLAvatarName av_name; -	if (LLAvatarNameCache::useDisplayNames() -		&& LLAvatarNameCache::get(id, &av_name)) -	{ -		name = av_name.mDisplayName + " (" + av_name.mSLID + ")"; -	} - -	LLUUID session_id = gIMMgr->addSession(name, IM_NOTHING_SPECIAL, id); +	std::string name = av_name.getNameAndSLID(); +	LLUUID session_id = gIMMgr->addSession(name, IM_NOTHING_SPECIAL, agent_id);  	if (session_id != LLUUID::null)  	{  		LLIMFloater::show(session_id); @@ -217,6 +200,16 @@ void LLAvatarActions::startIM(const LLUUID& id)  }  // static +void LLAvatarActions::startIM(const LLUUID& id) +{ +	if (id.isNull()) +		return; + +	LLAvatarNameCache::get(id, +		boost::bind(&on_avatar_name_cache_start_im, _1, _2)); +} + +// static  void LLAvatarActions::endIM(const LLUUID& id)  {  	if (id.isNull()) @@ -229,6 +222,18 @@ void LLAvatarActions::endIM(const LLUUID& id)  	}  } +static void on_avatar_name_cache_start_call(const LLUUID& agent_id, +											const LLAvatarName& av_name) +{ +	std::string name = av_name.getNameAndSLID(); +	LLUUID session_id = gIMMgr->addSession(name, IM_NOTHING_SPECIAL, agent_id, true); +	if (session_id != LLUUID::null) +	{ +		gIMMgr->startCall(session_id); +	} +	make_ui_sound("UISndStartIM"); +} +  // static  void LLAvatarActions::startCall(const LLUUID& id)  { @@ -236,22 +241,8 @@ void LLAvatarActions::startCall(const LLUUID& id)  	{  		return;  	} - -	std::string name; -	gCacheName->getFullName(id, name); -	// IDEVO -	LLAvatarName av_name; -	if (LLAvatarNameCache::useDisplayNames() -		&& LLAvatarNameCache::get(id, &av_name)) -	{ -		name = av_name.mDisplayName + " (" + av_name.mSLID + ")"; -	} -	LLUUID session_id = gIMMgr->addSession(name, IM_NOTHING_SPECIAL, id, true); -	if (session_id != LLUUID::null) -	{ -		gIMMgr->startCall(session_id); -	} -	make_ui_sound("UISndStartIM"); +	LLAvatarNameCache::get(id, +		boost::bind(&on_avatar_name_cache_start_call, _1, _2));  }  // static | 
