summaryrefslogtreecommitdiff
path: root/indra/newview/llstartup.cpp
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2015-08-28 16:55:33 -0700
committerRider Linden <rider@lindenlab.com>2015-08-28 16:55:33 -0700
commit99e56eedabfe34dbfbfd8105759403173de72d44 (patch)
tree32747c8f4d13a4ebf816917fa88e98ff1632cc7e /indra/newview/llstartup.cpp
parent02c3262ac8e7f27b0effb546ad235e103c9581cf (diff)
MAINT-5575: Begin conversion to Singleton<> for Experience Cache. Commited on branch so that I don't trigger a build of it until I'm ready.
--HG-- branch : MAINT-5575
Diffstat (limited to 'indra/newview/llstartup.cpp')
-rwxr-xr-xindra/newview/llstartup.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp
index c74890a4e9..46f75c4f57 100755
--- a/indra/newview/llstartup.cpp
+++ b/indra/newview/llstartup.cpp
@@ -2820,9 +2820,10 @@ void LLStartUp::initNameCache()
void LLStartUp::initExperiences()
-{
+{
+ // just a get instance here. Should trigger loading the cache.
+ LLExperienceCache::getInstance();
LLAppViewer::instance()->loadExperienceCache();
- LLExperienceCache::initClass();
LLExperienceLog::instance().initialize();
}