diff options
author | Oz Linden <oz@lindenlab.com> | 2017-03-13 10:08:18 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2017-03-13 10:08:18 -0400 |
commit | fa61272bd4741f786b86c22db273c7b0a5f16924 (patch) | |
tree | 707b8182826dc629aa0a9ad6d88b3ed7b15f21f1 /indra/newview/llvoiceclient.cpp | |
parent | bf2aa6a6e37bb64f9b8ac45c18aba89629aa9ad8 (diff) |
clean up use of mVoiceEnabled (rename the session member mVoiceActive)
Diffstat (limited to 'indra/newview/llvoiceclient.cpp')
-rw-r--r-- | indra/newview/llvoiceclient.cpp | 5 |
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() |