diff options
| author | Graham Madarasz (Graham Linden) <graham@lindenlab.com> | 2013-09-12 09:48:28 -0700 | 
|---|---|---|
| committer | Graham Madarasz (Graham Linden) <graham@lindenlab.com> | 2013-09-12 09:48:28 -0700 | 
| commit | b6cfd67a36fe34092dd812940bf051994d0317f5 (patch) | |
| tree | 76f5750d68dbca475502a1678402012845188298 /indra/newview | |
| parent | 5b7da1998a95ccf545ff3b5a38a62e79ee00e1bb (diff) | |
MAINT-3134 keep chat from opening in response to key confirm on quit dialog, fix mac-only sketchy precedence warning, and re-re-re-re-re-remove patch file that simply will not die.
Diffstat (limited to 'indra/newview')
| -rwxr-xr-x | indra/newview/llfloaterimcontainer.cpp | 2 | ||||
| -rwxr-xr-x | indra/newview/llviewerkeyboard.cpp | 5 | 
2 files changed, 6 insertions, 1 deletions
| diff --git a/indra/newview/llfloaterimcontainer.cpp b/indra/newview/llfloaterimcontainer.cpp index 4591b80ac4..b09d627d2a 100755 --- a/indra/newview/llfloaterimcontainer.cpp +++ b/indra/newview/llfloaterimcontainer.cpp @@ -1604,7 +1604,7 @@ LLConversationItem* LLFloaterIMContainer::addConversationListItem(const LLUUID&  	// Create the participants widgets now  	// Note: usually, we do not get an updated avatar list at that point -	if (uuid.isNull() || im_sessionp && !im_sessionp->isP2PSessionType()) +	if (uuid.isNull() || (im_sessionp && !im_sessionp->isP2PSessionType()))  	{  		LLFolderViewModelItemCommon::child_list_t::const_iterator current_participant_model = item->getChildrenBegin();  		LLFolderViewModelItemCommon::child_list_t::const_iterator end_participant_model = item->getChildrenEnd(); diff --git a/indra/newview/llviewerkeyboard.cpp b/indra/newview/llviewerkeyboard.cpp index 47a8a04b63..2fbb3bf868 100755 --- a/indra/newview/llviewerkeyboard.cpp +++ b/indra/newview/llviewerkeyboard.cpp @@ -534,6 +534,11 @@ void stop_moving( EKeystate s )  void start_chat( EKeystate s )  { +    if (LLAppViewer::instance()->quitRequested()) +    { +        return; // can't talk, gotta go, kthxbye! +    } +      	// start chat  	LLFloaterIMNearbyChat::startChat(NULL);  } | 
