diff options
author | Andrew A. de Laix <alain@lindenlab.com> | 2010-10-28 16:47:05 -0700 |
---|---|---|
committer | Andrew A. de Laix <alain@lindenlab.com> | 2010-10-28 16:47:05 -0700 |
commit | ca9594af28ce2e1cc8bb333a0fa7384dae718a9a (patch) | |
tree | 891efdede6e6f46f6f0d3999f4b7c692431c328c /indra/newview/llappviewer.cpp | |
parent | be8c9fc21758bcbc1d9f3d565b221310344231bd (diff) |
shell of the update checker; it will just print a message to the log depending on the result of the check one time.
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rw-r--r-- | indra/newview/llappviewer.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index e6feaae504..06300141be 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -632,9 +632,6 @@ bool LLAppViewer::init() if (!initConfiguration()) return false; - // Initialize updater service - initUpdater(); - // write Google Breakpad minidump files to our log directory std::string logdir = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, ""); logdir += gDirUtilp->getDirDelimiter(); @@ -980,7 +977,10 @@ bool LLAppViewer::mainLoop() gServicePump = new LLPumpIO(gAPRPoolp); LLHTTPClient::setPump(*gServicePump); LLCurl::setCAFile(gDirUtilp->getCAFile()); - + + // Initialize updater service (now that we have an io pump) + initUpdater(); + // Note: this is where gLocalSpeakerMgr and gActiveSpeakerMgr used to be instantiated. LLVoiceChannel::initClass(); |