From f3ec60774f65b40f09423f62df99d51aba491624 Mon Sep 17 00:00:00 2001 From: "dwitte%stanford.edu" Date: Wed, 19 Nov 2003 01:59:36 +0000 Subject: [PATCH] remove unused *_FetchFromNetCenter functions. thanks to gautheri@noos.fr (Serge Gautherie) for the patch. r=dwitte, sr=bryner --- extensions/wallet/public/nsIWalletService.idl | 1 - extensions/wallet/src/nsWalletService.cpp | 5 ----- extensions/wallet/src/wallet.cpp | 5 ----- extensions/wallet/src/wallet.h | 3 --- 4 files changed, 14 deletions(-) diff --git a/extensions/wallet/public/nsIWalletService.idl b/extensions/wallet/public/nsIWalletService.idl index 559f526266e..c3eb414d6b1 100644 --- a/extensions/wallet/public/nsIWalletService.idl +++ b/extensions/wallet/public/nsIWalletService.idl @@ -72,7 +72,6 @@ interface nsIWalletService : nsISupports { wstring WALLET_PrefillOneElement (in nsIDOMWindowInternal win, in nsIDOMNode elementNode); [noscript]void WALLET_PrefillReturn(in nsAutoString results); - void WALLET_FetchFromNetCenter(); boolean WALLET_ExpirePassword(); void WALLET_InitReencryptCallback(in nsIDOMWindowInternal win); diff --git a/extensions/wallet/src/nsWalletService.cpp b/extensions/wallet/src/nsWalletService.cpp index 9300242d722..81c4bc7e24e 100644 --- a/extensions/wallet/src/nsWalletService.cpp +++ b/extensions/wallet/src/nsWalletService.cpp @@ -168,11 +168,6 @@ NS_IMETHODIMP nsWalletlibService::WALLET_PrefillReturn(nsAutoString results){ return NS_OK; } -NS_IMETHODIMP nsWalletlibService::WALLET_FetchFromNetCenter(){ - ::WLLT_FetchFromNetCenter(); - return NS_OK; -} - NS_IMETHODIMP nsWalletlibService::WALLET_ExpirePassword(PRBool* status){ ::WLLT_ExpirePassword(status); return NS_OK; diff --git a/extensions/wallet/src/wallet.cpp b/extensions/wallet/src/wallet.cpp index 549b547692f..7d45927cca6 100644 --- a/extensions/wallet/src/wallet.cpp +++ b/extensions/wallet/src/wallet.cpp @@ -4150,8 +4150,3 @@ WLLT_OnSubmit(nsIContent* currentForm, nsIDOMWindowInternal* window) { } } } - -PUBLIC void -WLLT_FetchFromNetCenter() { -// wallet_FetchFromNetCenter(); -} diff --git a/extensions/wallet/src/wallet.h b/extensions/wallet/src/wallet.h index b58223ef36e..7abe9af2409 100644 --- a/extensions/wallet/src/wallet.h +++ b/extensions/wallet/src/wallet.h @@ -108,9 +108,6 @@ WLLT_GetPrefillListForViewer(nsString& aPrefillList); extern void WLLT_OnSubmit(nsIContent* formNode, nsIDOMWindowInternal* window); -extern void -WLLT_FetchFromNetCenter(); - extern void WLLT_ExpirePassword(PRBool* status);