diff options
| author | William Todd Stinson <stinson@lindenlab.com> | 2012-11-16 16:17:11 -0800 | 
|---|---|---|
| committer | William Todd Stinson <stinson@lindenlab.com> | 2012-11-16 16:17:11 -0800 | 
| commit | c6a0f0ae1dec5ef2f7657d8c1ca07d85c1fef55d (patch) | |
| tree | e2b3e3cfd10c86b07275cec89d41abd69a851506 /indra | |
| parent | d6358e120fd5f6b6e987c05469c18b9ef186dba0 (diff) | |
CHUI-518: FIX Removing the LLIMMgr::getInstance() as the containing method is already a non-static member method of the same class.
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llimview.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index a38153c315..e2b678626b 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 | 
