diff options
| author | Mike Antipov <mantipov@productengine.com> | 2010-04-09 15:13:25 +0300 | 
|---|---|---|
| committer | Mike Antipov <mantipov@productengine.com> | 2010-04-09 15:13:25 +0300 | 
| commit | a7dce3f811bec56204736b6223cd67431bc20f99 (patch) | |
| tree | 2415aa3110cab963b541cb9cfcbb95f564b236f5 | |
| parent | 43c85b0dfb4e7e7c9fdfc02954bbb0115ec344c4 (diff) | |
| parent | a45eefaf26ad24fdc9f2fa4f55be1a10c8e0a09f (diff) | |
merge
--HG--
branch : product-engine
| -rw-r--r-- | indra/newview/llcallfloater.cpp | 6 | ||||
| -rw-r--r-- | indra/newview/llparticipantlist.cpp | 2 | 
2 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llcallfloater.cpp b/indra/newview/llcallfloater.cpp index bed5c01d7a..1c6857b75c 100644 --- a/indra/newview/llcallfloater.cpp +++ b/indra/newview/llcallfloater.cpp @@ -189,7 +189,7 @@ void LLCallFloater::draw()  	// Seems this is a problem somewhere in Voice Client (LLVoiceClient::participantAddedEvent)  //	onChange(); -	bool is_moderator_muted = gVoiceClient->getIsModeratorMuted(gAgentID); +	bool is_moderator_muted = LLVoiceClient::getInstance()->getIsModeratorMuted(gAgentID);  	if (mIsModeratorMutedVoice != is_moderator_muted)  	{ @@ -470,7 +470,7 @@ void LLCallFloater::updateAgentModeratorState()  static void get_voice_participants_uuids(uuid_vec_t& speakers_uuids)  {  	// Get a list of participants from VoiceClient -	LLVoiceClient::participantMap *voice_map = gVoiceClient->getParticipantList(); +	LLVoiceClient::participantMap *voice_map = LLVoiceClient::getInstance()->getParticipantList();  	if (voice_map)  	{  		for (LLVoiceClient::participantMap::const_iterator iter = voice_map->begin(); @@ -725,7 +725,7 @@ void LLCallFloater::connectToChannel(LLVoiceChannel* channel)  void LLCallFloater::onVoiceChannelStateChanged(const LLVoiceChannel::EState& old_state, const LLVoiceChannel::EState& new_state)  {  	// check is voice operational and if it doesn't work hide VCP (EXT-4397) -	if(LLVoiceClient::voiceEnabled() && gVoiceClient->voiceWorking()) +	if(LLVoiceClient::voiceEnabled() && LLVoiceClient::getInstance()->voiceWorking())  	{  		updateState(new_state);  	} diff --git a/indra/newview/llparticipantlist.cpp b/indra/newview/llparticipantlist.cpp index eb245453db..dbb8e962bd 100644 --- a/indra/newview/llparticipantlist.cpp +++ b/indra/newview/llparticipantlist.cpp @@ -632,7 +632,7 @@ bool LLParticipantList::LLParticipantListMenu::enableContextMenuItem(const LLSD&  	else if (item == "can_call")  	{  		bool not_agent = mUUIDs.front() != gAgentID; -		bool can_call = not_agent && LLVoiceClient::voiceEnabled() && gVoiceClient->voiceWorking(); +		bool can_call = not_agent && LLVoiceClient::voiceEnabled() && LLVoiceClient::getInstance()->voiceWorking();  		return can_call;  	}  | 
