fix bug 85770, auto register components always called at startup. r=ssu

sr=alecf a=chofmann


git-svn-id: svn://10.0.0.236/branches/MOZILLA_0_9_2_BRANCH@98321 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cathleen%netscape.com
2001-06-29 22:57:09 +00:00
parent 9d72d16360
commit 6ce7e43326
7 changed files with 102 additions and 21 deletions

View File

@@ -66,6 +66,7 @@
#include "nsProcess.h"
#include "InstallCleanupDefines.h"
#include "nsISoftwareUpdate.h"
// Interfaces Needed
#include "nsIXULWindow.h"
@@ -1039,8 +1040,20 @@ static nsresult main1(int argc, char* argv[], nsISupports *nativeApp )
NS_ASSERTION(NS_SUCCEEDED(rv), "Initializing AppleEvents failed");
#endif
// XXX: This call will be replaced by a registry initialization...
NS_SetupRegistry_1( PR_TRUE );
// Ask XPInstall if we need to autoregister anything new.
PRBool needAutoReg = NS_SoftwareUpdateNeedsAutoReg();
#ifdef DEBUG
// _Always_ autoreg if we're in a debug build, under the assumption
// that people are busily modifying components and will be angry if
// their changes aren't noticed.
needAutoReg = PR_TRUE;
#endif
NS_SetupRegistry_1(needAutoReg);
if (needAutoReg) // XXX ...and autoreg was successful?
NS_SoftwareUpdateDidAutoReg();
// remove the nativeApp as an XPCOM autoreg observer
if (obsService)