From e4497eb7a4fece298c410c19f11194c339fe6282 Mon Sep 17 00:00:00 2001 From: "morse%netscape.com" Date: Sun, 13 Jun 1999 17:25:56 +0000 Subject: [PATCH] use new get-password and get-user dialog git-svn-id: svn://10.0.0.236/trunk@35082 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/extensions/wallet/src/singsign.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/mozilla/extensions/wallet/src/singsign.cpp b/mozilla/extensions/wallet/src/singsign.cpp index 2a7bbbb874c..fb709786dce 100644 --- a/mozilla/extensions/wallet/src/singsign.cpp +++ b/mozilla/extensions/wallet/src/singsign.cpp @@ -205,13 +205,7 @@ si_PromptPassword (char *szMessage) { } if (dialog) { const nsString message = szMessage; -#ifdef xxx dialog->PromptPassword(message, password, &retval); -#else - /* temporary until PromptPassword is implemented */ - nsString username; - dialog->PromptUserAndPassword(message, username, password, &retval); -#endif } nsServiceManager::ReleaseService(kNetSupportDialogCID, dialog); if (retval) { @@ -234,13 +228,7 @@ si_Prompt(char *szMessage, char* szDefaultUsername) { } if (dialog) { const nsString message = szMessage; -#ifdef xxx dialog->Prompt(message, defaultUsername, username, &retval); -#else - /* temporary until Prompt is implemented */ - nsString password; - dialog->PromptUserAndPassword(message, username, password, &retval); -#endif } nsServiceManager::ReleaseService(kNetSupportDialogCID, dialog); if (retval) {