diff options
author | Ansariel <ansariel.hiller@phoenixviewer.com> | 2024-06-21 19:48:18 +0200 |
---|---|---|
committer | Ansariel <ansariel.hiller@phoenixviewer.com> | 2024-06-21 19:48:18 +0200 |
commit | e2c7a4d2454eada7d330eef1a57c1788eea775db (patch) | |
tree | a4b66ae0e4134fe5c704903ff4c933f11812756a /indra/newview/llvoicechannel.cpp | |
parent | 9fb9e8f33cb33a1535f43b4be030009c192ea92b (diff) |
Fix some BOOL oversights during WebRTC merge
Diffstat (limited to 'indra/newview/llvoicechannel.cpp')
-rw-r--r-- | indra/newview/llvoicechannel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llvoicechannel.cpp b/indra/newview/llvoicechannel.cpp index dedc4efcb9..b665eb69a2 100644 --- a/indra/newview/llvoicechannel.cpp +++ b/indra/newview/llvoicechannel.cpp @@ -887,7 +887,7 @@ void LLVoiceChannelP2P::requestChannelInfo() void LLVoiceChannelP2P::setChannelInfo(const LLSD& channel_info) { mChannelInfo = channel_info; - BOOL needs_activate = false; + bool needs_activate = false; if (callStarted()) { // defer to lower agent id when already active @@ -906,7 +906,7 @@ void LLVoiceChannelP2P::setChannelInfo(const LLSD& channel_info) } } - mReceivedCall = TRUE; + mReceivedCall = true; if (!channel_info.isUndefined()) { mIncomingCallInterface = LLVoiceClient::getInstance()->getIncomingCallInterface(channel_info); |