diff options
author | Alexei Arabadji <aarabadji@productengine.com> | 2009-11-16 16:51:06 +0200 |
---|---|---|
committer | Alexei Arabadji <aarabadji@productengine.com> | 2009-11-16 16:51:06 +0200 |
commit | a77bf7a1c2bc2b198f1b9c6c95f61ed0110ff62d (patch) | |
tree | 4b31d7589bd8818d0440e451cac24ef7def2680e /indra | |
parent | 59d575fe615bf14a10056c9b9fe0c109ec2c103e (diff) |
fixed EXT-2365 "LLAlertHandler should can process notifications before login.";
initialized notifications screen channels after LLViewerWindow instantiated
and disabled all old notifications widgets(LLNotifyBox, LLGroupNotifyBox,
LLAlertDialog);
--HG--
branch : product-engine
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llappviewer.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 845a264327..f82d178089 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -89,6 +89,8 @@ #include "llvfsthread.h" #include "llvolumemgr.h" +#include "llnotificationmanager.h" + // Third party library includes #include <boost/bind.hpp> @@ -2340,6 +2342,8 @@ bool LLAppViewer::initWindow() gSavedSettings.getS32("WindowX"), gSavedSettings.getS32("WindowY"), gSavedSettings.getS32("WindowWidth"), gSavedSettings.getS32("WindowHeight"), FALSE, ignorePixelDepth); + + LLNotificationsUI::LLNotificationManager::getInstance(); if (gSavedSettings.getBOOL("WindowFullScreen")) { |