From 9b22308059d4deaaa20acee57a9bde66201df867 Mon Sep 17 00:00:00 2001 From: Ansariel Date: Sun, 27 Oct 2013 13:19:10 +0100 Subject: [PATCH] Fix BOOL/bool mix-up --- indra/newview/llimview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 6103c1c15b..528a021c62 100755 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -3757,7 +3757,7 @@ void LLIMMgr::processIMTypingCore(const LLIMInfo* im_info, BOOL typing) args["[NAME]"] = im_info->mName; BOOL is_muted = LLMuteList::getInstance()->isMuted(im_info->mFromID, im_info->mName, LLMute::flagTextChat); - BOOL is_friend = (LLAvatarTracker::instance().getBuddyInfo(im_info->mFromID) == NULL) ? false : true; + bool is_friend = (LLAvatarTracker::instance().getBuddyInfo(im_info->mFromID) == NULL) ? false : true; static LLCachedControl VoiceCallsFriendsOnly(gSavedSettings, "VoiceCallsFriendsOnly"); if(!is_muted && ( (VoiceCallsFriendsOnly && is_friend) || !VoiceCallsFriendsOnly ))