diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-10-18 23:50:36 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-10-18 23:50:36 +0800 |
commit | 8a90973ba893d84946c898f137fd2efb3ced96ac (patch) | |
tree | 36a81d9f515d5c6801dc1277934578f00ecbd317 | |
parent | 87aea2e047c3b6b4c3c074b2c420755addeae9fc (diff) | |
download | gsoc2013-epiphany-8a90973ba893d84946c898f137fd2efb3ced96ac.tar gsoc2013-epiphany-8a90973ba893d84946c898f137fd2efb3ced96ac.tar.gz gsoc2013-epiphany-8a90973ba893d84946c898f137fd2efb3ced96ac.tar.bz2 gsoc2013-epiphany-8a90973ba893d84946c898f137fd2efb3ced96ac.tar.lz gsoc2013-epiphany-8a90973ba893d84946c898f137fd2efb3ced96ac.tar.xz gsoc2013-epiphany-8a90973ba893d84946c898f137fd2efb3ced96ac.tar.zst gsoc2013-epiphany-8a90973ba893d84946c898f137fd2efb3ced96ac.zip |
Looks like I copied a bug from mozilla js code. Do not show bogus
2003-10-18 Marco Pesenti Gritti <marco@gnome.org>
* embed/mozilla/EphyHeaderSniffer.cpp:
Looks like I copied a bug from mozilla js code.
Do not show bogus checkbox.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | embed/mozilla/EphyHeaderSniffer.cpp | 15 |
2 files changed, 10 insertions, 12 deletions
@@ -1,5 +1,12 @@ 2003-10-18 Marco Pesenti Gritti <marco@gnome.org> + * embed/mozilla/EphyHeaderSniffer.cpp: + + Looks like I copied a bug from mozilla js code. + Do not show bogus checkbox. + +2003-10-18 Marco Pesenti Gritti <marco@gnome.org> + * embed/mozilla/MozDownload.cpp: initialize cur/total size diff --git a/embed/mozilla/EphyHeaderSniffer.cpp b/embed/mozilla/EphyHeaderSniffer.cpp index 78135fe35..407967b87 100644 --- a/embed/mozilla/EphyHeaderSniffer.cpp +++ b/embed/mozilla/EphyHeaderSniffer.cpp @@ -257,37 +257,28 @@ NS_IMETHODIMP EphyHeaderSniffer::Prompt (const PRUnichar *dialogTitle, const PRU const PRUnichar *passwordRealm, PRUint32 savePassword, const PRUnichar *defaultText, PRUnichar **result, PRBool *_retval) { - PRBool checkValue; - if (defaultText) *result = ToNewUnicode(nsDependentString(defaultText)); - checkValue = savePassword; return mPrompt->Prompt (nsnull, dialogTitle, text, result, - passwordRealm, &checkValue, _retval); + nsnull, nsnull, _retval); } NS_IMETHODIMP EphyHeaderSniffer::PromptUsernameAndPassword (const PRUnichar *dialogTitle, const PRUnichar *text, const PRUnichar *passwordRealm, PRUint32 savePassword, PRUnichar **user, PRUnichar **pwd, PRBool *_retval) { - PRBool checkValue; - *_retval = savePassword; - checkValue = savePassword; return mPrompt->PromptUsernameAndPassword (nsnull, dialogTitle, text, user, pwd, - passwordRealm, &checkValue, _retval); + nsnull, nsnull, _retval); } NS_IMETHODIMP EphyHeaderSniffer::PromptPassword (const PRUnichar *dialogTitle, const PRUnichar *text, const PRUnichar *passwordRealm, PRUint32 savePassword, PRUnichar **pwd, PRBool *_retval) { - PRBool checkValue; - *_retval = savePassword; - checkValue = savePassword; return mPrompt->PromptPassword (nsnull, dialogTitle, text, pwd, - passwordRealm, &checkValue, _retval); + nsnull, nsnull, _retval); } |