diff options
author | Sergey Borushevsky <sborushevsky@productengine.com> | 2009-11-30 18:58:52 +0200 |
---|---|---|
committer | Sergey Borushevsky <sborushevsky@productengine.com> | 2009-11-30 18:58:52 +0200 |
commit | 3854305519d2fccf113408f2ab5acb3e12e6fe31 (patch) | |
tree | bc34c29cbbd428cf9564a8ced48955eefb389a74 /indra/newview/llimfloater.cpp | |
parent | ca8a4f1f0708aa4a2e594aba3280cf892365c4af (diff) |
Fixed build after implementation of EXT-2882.
Replaced LLNotifications::add call by LLNotificationsUtil::add.
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llimfloater.cpp')
-rw-r--r-- | indra/newview/llimfloater.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llimfloater.cpp b/indra/newview/llimfloater.cpp index 5fa278e727..5e9ffdf410 100644 --- a/indra/newview/llimfloater.cpp +++ b/indra/newview/llimfloater.cpp @@ -34,6 +34,8 @@ #include "llimfloater.h" +#include "llnotificationsutil.h" + #include "llagent.h" #include "llappviewer.h" #include "llbutton.h" @@ -636,7 +638,7 @@ void LLIMFloater::processAgentListUpdates(const LLSD& body) mInputEditor->setLabel(label); if (moderator_muted_text) - LLNotifications::instance().add("TextChatIsMutedByModerator"); + LLNotificationsUtil::add("TextChatIsMutedByModerator"); } } } |