Fixing bug 231049. Removing unused member nsXPInstallManager::mStringBundle. r=dougt@meer.net, sr=alecf@flett.org.

git-svn-id: svn://10.0.0.236/trunk@151406 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jst%mozilla.jstenback.com 2004-01-16 04:09:39 +00:00
parent 186039170e
commit 856b84852f
2 changed files with 0 additions and 13 deletions

View File

@ -91,18 +91,6 @@ nsXPInstallManager::nsXPInstallManager()
// initialize mLastUpdate to the current time
mLastUpdate = PR_Now();
// get the resourced xpinstall string bundle
mStringBundle = nsnull;
nsresult rv;
nsCOMPtr<nsIStringBundleService> service =
do_GetService( kStringBundleServiceCID, &rv );
if (NS_SUCCEEDED(rv) && service)
{
rv = service->CreateBundle( XPINSTALL_BUNDLE_URL,
getter_AddRefs(mStringBundle) );
}
}

View File

@ -105,7 +105,6 @@ class nsXPInstallManager : public nsIXPIListener,
PRBool mNeedsShutdown;
nsCOMPtr<nsIXPIProgressDialog> mDlg;
nsCOMPtr<nsIStringBundle> mStringBundle;
nsCOMPtr<nsISoftwareUpdate> mInstallSvc;
nsCOMPtr<nsIDOMWindowInternal> mParentWindow;