diff options
| author | Ychebotarev ProductEngine <ychebotarev@productengine.com> | 2010-02-10 14:42:30 +0200 | 
|---|---|---|
| committer | Ychebotarev ProductEngine <ychebotarev@productengine.com> | 2010-02-10 14:42:30 +0200 | 
| commit | 5831cb1394338cdfc45e3188a034edb54c2b785f (patch) | |
| tree | 56461e1f2d0a44c872d994d41342166aac1e23d0 | |
| parent | 3e9e874ab467dd33ff9ea542ac0834e9fe40377d (diff) | |
| parent | ea9185e0dcfde046232cc2ce20d34171b96e37e5 (diff) | |
merge
--HG--
branch : product-engine
| -rw-r--r-- | indra/llui/lltexteditor.cpp | 2 | ||||
| -rw-r--r-- | indra/llui/lltexteditor.h | 2 | ||||
| -rw-r--r-- | indra/llui/lluicolortable.cpp | 3 | ||||
| -rw-r--r-- | indra/newview/llavataractions.cpp | 7 | ||||
| -rw-r--r-- | indra/newview/llcallingcard.cpp | 10 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/notifications.xml | 4 | 
6 files changed, 15 insertions, 13 deletions
| diff --git a/indra/llui/lltexteditor.cpp b/indra/llui/lltexteditor.cpp index ad9f066539..ce5f1bd082 100644 --- a/indra/llui/lltexteditor.cpp +++ b/indra/llui/lltexteditor.cpp @@ -737,7 +737,7 @@ BOOL LLTextEditor::handleRightMouseDown(S32 x, S32 y, MASK mask)  	}  	if (!LLTextBase::handleRightMouseDown(x, y, mask))  	{ -		if(getChowContextMenu()) +		if(getShowContextMenu())  		{  			showContextMenu(x, y);  		} diff --git a/indra/llui/lltexteditor.h b/indra/llui/lltexteditor.h index 00c6a8b68a..71d937b2c4 100644 --- a/indra/llui/lltexteditor.h +++ b/indra/llui/lltexteditor.h @@ -204,7 +204,7 @@ public:  	void getSelectedSegments(segment_vec_t& segments) const;  	void			setShowContextMenu(bool show) { mShowContextMenu = show; } -	bool			getChowContextMenu() const { return mShowContextMenu; } +	bool			getShowContextMenu() const { return mShowContextMenu; }  protected:  	void			showContextMenu(S32 x, S32 y); diff --git a/indra/llui/lluicolortable.cpp b/indra/llui/lluicolortable.cpp index ac765fc9d5..1b64ef3abe 100644 --- a/indra/llui/lluicolortable.cpp +++ b/indra/llui/lluicolortable.cpp @@ -329,4 +329,5 @@ void LLUIColorTable::insertFromParams(const Params& p)  	insertFromParams(p, mUserSetColors);  } -// EOF
\ No newline at end of file +// EOF + diff --git a/indra/newview/llavataractions.cpp b/indra/newview/llavataractions.cpp index bd987eac77..1d75374930 100644 --- a/indra/newview/llavataractions.cpp +++ b/indra/newview/llavataractions.cpp @@ -181,7 +181,12 @@ void LLAvatarActions::startIM(const LLUUID& id)  		return;  	std::string name; -	gCacheName->getFullName(id, name); +	if (!gCacheName->getFullName(id, name)) +	{ +		gCacheName->get(id, FALSE, boost::bind(&LLAvatarActions::startIM, id)); +		return; +	} +  	LLUUID session_id = gIMMgr->addSession(name, IM_NOTHING_SPECIAL, id);  	if (session_id != LLUUID::null)  	{ diff --git a/indra/newview/llcallingcard.cpp b/indra/newview/llcallingcard.cpp index d988770f90..996139fccc 100644 --- a/indra/newview/llcallingcard.cpp +++ b/indra/newview/llcallingcard.cpp @@ -56,6 +56,7 @@  #include "llnotifications.h"  #include "llnotificationsutil.h"  #include "llresmgr.h" +#include "llslurl.h"  #include "llimview.h"  #include "llviewercontrol.h"  #include "llviewernetwork.h" @@ -689,13 +690,8 @@ void LLAvatarTracker::processNotify(LLMessageSystem* msg, bool online)  				setBuddyOnline(agent_id,online);  				if(chat_notify)  				{ -					std::string first, last; -					if(gCacheName->getName(agent_id, first, last)) -					{ -						notify = TRUE; -						args["FIRST"] = first; -						args["LAST"] = last; -					} +					notify = TRUE; +					args["NAME_SLURL"] = LLSLURL::buildCommand("agent", agent_id, "about");  				}  			}  			else diff --git a/indra/newview/skins/default/xui/en/notifications.xml b/indra/newview/skins/default/xui/en/notifications.xml index 90381c2af4..51f0f6839c 100644 --- a/indra/newview/skins/default/xui/en/notifications.xml +++ b/indra/newview/skins/default/xui/en/notifications.xml @@ -4307,14 +4307,14 @@ Topic: [SUBJECT], Message: [MESSAGE]     icon="notifytip.tga"     name="FriendOnline"     type="notifytip"> -[FIRST] [LAST] is Online +[NAME_SLURL] is Online    </notification>    <notification     icon="notifytip.tga"     name="FriendOffline"     type="notifytip"> -[FIRST] [LAST] is Offline +[NAME_SLURL] is Offline    </notification>    <notification | 
