backing out change temporarily till I figure out why it broke the mac build

This commit is contained in:
morse%netscape.com 2000-07-12 04:30:05 +00:00
Родитель c244654ebf
Коммит 04ee82566c
1 изменённых файлов: 8 добавлений и 4 удалений

Просмотреть файл

@ -828,7 +828,8 @@ nsBrowserInstance::WalletPreview(nsIDOMWindow* aWin, nsIDOMWindow* aForm, PRBool
kIWalletServiceIID, kIWalletServiceIID,
(nsISupports **)&walletservice); (nsISupports **)&walletservice);
if (NS_SUCCEEDED(res) && (nsnull != walletservice)) { if (NS_SUCCEEDED(res) && (nsnull != walletservice)) {
res = walletservice->WALLET_Prefill(presShell, PR_FALSE, doPrefillMessage); // commenting out temporarily till I figure out why it broke the mac build
// res = walletservice->WALLET_Prefill(presShell, PR_FALSE, doPrefillMessage);
nsServiceManager::ReleaseService(kWalletServiceCID, walletservice); nsServiceManager::ReleaseService(kWalletServiceCID, walletservice);
if (NS_FAILED(res)) { /* this just means that there was nothing to prefill */ if (NS_FAILED(res)) { /* this just means that there was nothing to prefill */
return NS_OK; return NS_OK;
@ -871,7 +872,8 @@ nsBrowserInstance::WalletChangePassword(PRBool* status)
kIWalletServiceIID, kIWalletServiceIID,
(nsISupports **)&walletservice); (nsISupports **)&walletservice);
if ((NS_OK == res) && (nsnull != walletservice)) { if ((NS_OK == res) && (nsnull != walletservice)) {
res = walletservice->WALLET_ChangePassword(status); // commenting out temporarily till I figure out why it broke the mac build
// res = walletservice->WALLET_ChangePassword(status);
nsServiceManager::ReleaseService(kWalletServiceCID, walletservice); nsServiceManager::ReleaseService(kWalletServiceCID, walletservice);
} }
return NS_OK; return NS_OK;
@ -900,7 +902,8 @@ nsBrowserInstance::WalletQuickFillin(nsIDOMWindow* aWin, PRBool* doPrefillMessag
kIWalletServiceIID, kIWalletServiceIID,
(nsISupports **)&walletservice); (nsISupports **)&walletservice);
if ((NS_OK == res) && (nsnull != walletservice)) { if ((NS_OK == res) && (nsnull != walletservice)) {
res = walletservice->WALLET_Prefill(presShell, PR_TRUE, doPrefillMessage); // commenting out temporarily till I figure out why it broke the mac build
// res = walletservice->WALLET_Prefill(presShell, PR_TRUE, doPrefillMessage);
nsServiceManager::ReleaseService(kWalletServiceCID, walletservice); nsServiceManager::ReleaseService(kWalletServiceCID, walletservice);
return NS_OK; return NS_OK;
} else { } else {
@ -929,7 +932,8 @@ nsBrowserInstance::WalletRequestToCapture(nsIDOMWindow* aWin, PRUint32* status)
kIWalletServiceIID, kIWalletServiceIID,
(nsISupports **)&walletservice); (nsISupports **)&walletservice);
if ((NS_OK == res) && (nsnull != walletservice)) { if ((NS_OK == res) && (nsnull != walletservice)) {
res = walletservice->WALLET_RequestToCapture(presShell, status); // commenting out temporarily till I figure out why it broke the mac build
// res = walletservice->WALLET_RequestToCapture(presShell, status);
nsServiceManager::ReleaseService(kWalletServiceCID, walletservice); nsServiceManager::ReleaseService(kWalletServiceCID, walletservice);
return NS_OK; return NS_OK;
} else { } else {