diff options
| author | Alexei Arabadji <aarabadji@productengine.com> | 2009-12-03 18:59:23 +0200 | 
|---|---|---|
| committer | Alexei Arabadji <aarabadji@productengine.com> | 2009-12-03 18:59:23 +0200 | 
| commit | 8d2752c3a6b390758d567d090347eec85b73ad8d (patch) | |
| tree | df1580ae70dbdefe84ccabbca0d453be3099266a | |
| parent | 62feea50c2f430f65ad7ab16cfa5e66b2b2e2b63 (diff) | |
fixed 'accept' of voice group chat
--HG--
branch : product-engine
| -rw-r--r-- | indra/newview/llimview.cpp | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 5481ca97cd..344da345a9 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -1392,13 +1392,13 @@ void LLIncomingCallDialog::processCallResponse(S32 response)  		}  		else  		{ -			LLUUID session_id = gIMMgr->addSession( +			LLUUID new_session_id = gIMMgr->addSession(  				mPayload["session_name"].asString(),  				type,  				session_id); -			if (session_id != LLUUID::null) +			if (new_session_id != LLUUID::null)  			{ -				LLIMFloater::show(session_id); +				LLIMFloater::show(new_session_id);  			}  			std::string url = gAgent.getRegion()->getCapability( @@ -1486,13 +1486,13 @@ bool inviteUserResponse(const LLSD& notification, const LLSD& response)  			}  			else  			{ -				LLUUID session_id = gIMMgr->addSession( +				LLUUID new_session_id = gIMMgr->addSession(  					payload["session_name"].asString(),  					type,  					session_id); -				if (session_id != LLUUID::null) +				if (new_session_id != LLUUID::null)  				{ -					LLIMFloater::show(session_id); +					LLIMFloater::show(new_session_id);  				}  				std::string url = gAgent.getRegion()->getCapability(  | 
