diff options
Diffstat (limited to 'indra/newview/llvoicechannel.h')
-rw-r--r-- | indra/newview/llvoicechannel.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/newview/llvoicechannel.h b/indra/newview/llvoicechannel.h index 46a3f552cb..d50a6f589a 100644 --- a/indra/newview/llvoicechannel.h +++ b/indra/newview/llvoicechannel.h @@ -120,7 +120,7 @@ public: LLSD mChannelInfo; // true if call was ended by agent bool mCallEndedByAgent; - bool mIgnoreNextSessionLeave; + bool mIgnoreNextSessionLeave; LLHandle<LLPanel> mLoginNotificationHandle; typedef std::map<LLUUID, LLVoiceChannel*> voice_channel_map_t; @@ -129,7 +129,7 @@ public: static LLVoiceChannel* sProximalVoiceChannel; static LLVoiceChannel* sCurrentVoiceChannel; static LLVoiceChannel* sSuspendedVoiceChannel; - static BOOL sSuspended; + static bool sSuspended; private: state_changed_signal_t mStateChangedCallback; @@ -158,13 +158,13 @@ private: void voiceCallCapCoro(std::string url); U32 mRetries; - BOOL mIsRetrying; + bool mIsRetrying; bool mIsP2P; }; class LLVoiceChannelProximal : public LLVoiceChannel, public LLSingleton<LLVoiceChannelProximal> { - LLSINGLETON_C11(LLVoiceChannelProximal); + LLSINGLETON(LLVoiceChannelProximal); public: void onChange(EStatusType status, const LLSD &channelInfo, bool proximal) override; @@ -201,7 +201,7 @@ private: **/ void addToTheRecentPeopleList(); LLUUID mOtherUserID; - BOOL mReceivedCall; + bool mReceivedCall; LLVoiceP2POutgoingCallInterface *mOutgoingCallInterface; LLVoiceP2PIncomingCallInterfacePtr mIncomingCallInterface; }; |