From c6a0f0ae1dec5ef2f7657d8c1ca07d85c1fef55d Mon Sep 17 00:00:00 2001
From: William Todd Stinson <stinson@lindenlab.com>
Date: Fri, 16 Nov 2012 16:17:11 -0800
Subject: [PATCH] CHUI-518: FIX Removing the LLIMMgr::getInstance() as the
 containing method is already a non-static member method of the same class.

---
 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 a38153c315a..e2b678626b1 100644
--- a/indra/newview/llimview.cpp
+++ b/indra/newview/llimview.cpp
@@ -2814,7 +2814,7 @@ void LLIMMgr::inviteToSession(
 			if (isRejectDoNotDisturb && !isRejectGroupCall && !isRejectNonFriendCall)
 			{
 				LLSD args;
-				LLIMMgr::getInstance()->addSystemMessage(session_id, "you_auto_rejected_call", args);
+				addSystemMessage(session_id, "you_auto_rejected_call", args);
 				send_do_not_disturb_message(gMessageSystem, caller_id, session_id);
 			}
 			// silently decline the call
-- 
GitLab