diff options
| author | Yuri Chebotarev <ychebotarev@productengine.com> | 2009-11-11 17:06:35 +0200 | 
|---|---|---|
| committer | Yuri Chebotarev <ychebotarev@productengine.com> | 2009-11-11 17:06:35 +0200 | 
| commit | 5f8771ea9ee44359a516117a4908583b30b58138 (patch) | |
| tree | 0b40962f2107f1b9178ef490c18f508f73a1c4a8 | |
| parent | 8523d2d5b641cb5b0e4557237700065bd24daf83 (diff) | |
| parent | 73bba2bab49cb255d320e0209e54377dcc010fc3 (diff) | |
merge
--HG--
branch : product-engine
| -rw-r--r-- | indra/newview/llavataractions.cpp | 3 | ||||
| -rw-r--r-- | indra/newview/llchathistory.cpp | 1 | ||||
| -rw-r--r-- | indra/newview/llimfloater.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/strings.xml | 2 | 
4 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llavataractions.cpp b/indra/newview/llavataractions.cpp index dae4296a82..1087e1e6d3 100644 --- a/indra/newview/llavataractions.cpp +++ b/indra/newview/llavataractions.cpp @@ -54,6 +54,7 @@  #include "llmutelist.h"  #include "llrecentpeople.h"  #include "llsidetray.h" +#include "lltrans.h"  #include "llviewerobjectlist.h"  #include "llviewermessage.h"	// for handle_lure  #include "llviewerregion.h" @@ -226,7 +227,7 @@ void LLAvatarActions::startConference(const std::vector<LLUUID>& ids)  	{  		id_array.push_back(*it);  	} -	LLUUID session_id = gIMMgr->addSession("Friends Conference", IM_SESSION_CONFERENCE_START, ids[0], id_array); +	LLUUID session_id = gIMMgr->addSession(LLTrans::getString("IM_adhoc_title"), IM_SESSION_CONFERENCE_START, ids[0], id_array);  	if (session_id != LLUUID::null)  	{  		LLIMFloater::show(session_id); diff --git a/indra/newview/llchathistory.cpp b/indra/newview/llchathistory.cpp index b452f5bc1a..b7cd41cf6c 100644 --- a/indra/newview/llchathistory.cpp +++ b/indra/newview/llchathistory.cpp @@ -375,5 +375,4 @@ void LLChatHistory::appendWidgetMessage(const LLChat& chat, LLStyle::Params& sty  	mLastFromName = chat.mFromName;  	blockUndo(); -	setCursorAndScrollToEnd();  } diff --git a/indra/newview/llimfloater.cpp b/indra/newview/llimfloater.cpp index 8b44ccebdd..fd297986fc 100644 --- a/indra/newview/llimfloater.cpp +++ b/indra/newview/llimfloater.cpp @@ -517,7 +517,7 @@ void LLIMFloater::onInputEditorFocusReceived( LLFocusableElement* caller, void*  	LLIMModel::LLIMSession* im_session =  		LLIMModel::instance().findIMSession(self->mSessionID);  	//TODO: While disabled lllineeditor can receive focus we need to check if it is enabled (EK) -	if( im_session && im_session->mTextIMPossible && !self->mInputEditor->getEnabled()) +	if( im_session && im_session->mTextIMPossible && self->mInputEditor->getEnabled())  	{  		//in disconnected state IM input editor should be disabled  		self->mInputEditor->setEnabled(!gDisconnected); diff --git a/indra/newview/skins/default/xui/en/strings.xml b/indra/newview/skins/default/xui/en/strings.xml index c850dce141..fd8316d79c 100644 --- a/indra/newview/skins/default/xui/en/strings.xml +++ b/indra/newview/skins/default/xui/en/strings.xml @@ -2849,7 +2849,7 @@ If you continue to receive this message, contact the [SUPPORT_SITE].  	<string name="IM_default_text_label">Click here to instant message.</string>  	<string name="IM_to_label">To</string>  	<string name="IM_moderator_label">(Moderator)</string> - +	<string name="IM_adhoc_title">Ad-Hoc Conference</string>    <string name="ringing-im">      Joining Voice Chat...  | 
