summaryrefslogtreecommitdiff
path: root/indra/newview/llvoiceclient.cpp
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2017-03-13 10:08:18 -0400
committerOz Linden <oz@lindenlab.com>2017-03-13 10:08:18 -0400
commitfa61272bd4741f786b86c22db273c7b0a5f16924 (patch)
tree707b8182826dc629aa0a9ad6d88b3ed7b15f21f1 /indra/newview/llvoiceclient.cpp
parentbf2aa6a6e37bb64f9b8ac45c18aba89629aa9ad8 (diff)
clean up use of mVoiceEnabled (rename the session member mVoiceActive)
Diffstat (limited to 'indra/newview/llvoiceclient.cpp')
-rw-r--r--indra/newview/llvoiceclient.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llvoiceclient.cpp b/indra/newview/llvoiceclient.cpp
index 5c125a236a..26f172171a 100644
--- a/indra/newview/llvoiceclient.cpp
+++ b/indra/newview/llvoiceclient.cpp
@@ -519,7 +519,10 @@ bool LLVoiceClient::voiceEnabled()
void LLVoiceClient::setVoiceEnabled(bool enabled)
{
- if (mVoiceModule) mVoiceModule->setVoiceEnabled(enabled);
+ if (mVoiceModule)
+ {
+ mVoiceModule->setVoiceEnabled(enabled);
+ }
}
void LLVoiceClient::updateMicMuteLogic()