diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-02-01 22:06:54 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-02-01 22:06:54 +0800 |
commit | 1a64c9089d114a6d5ceab206798bd6ef885f812e (patch) | |
tree | f14e43dd58e4e121352f6481d377d663fd523085 | |
parent | fd54c2664fab9b1b585ab3924252bde29577ec11 (diff) | |
download | gsoc2013-epiphany-1a64c9089d114a6d5ceab206798bd6ef885f812e.tar gsoc2013-epiphany-1a64c9089d114a6d5ceab206798bd6ef885f812e.tar.gz gsoc2013-epiphany-1a64c9089d114a6d5ceab206798bd6ef885f812e.tar.bz2 gsoc2013-epiphany-1a64c9089d114a6d5ceab206798bd6ef885f812e.tar.lz gsoc2013-epiphany-1a64c9089d114a6d5ceab206798bd6ef885f812e.tar.xz gsoc2013-epiphany-1a64c9089d114a6d5ceab206798bd6ef885f812e.tar.zst gsoc2013-epiphany-1a64c9089d114a6d5ceab206798bd6ef885f812e.zip |
Use GTK_STOCK_DIALOG_AUTHENTICATION. Bug #329438.
2006-02-01 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/EphyPromptService.cpp:
Use GTK_STOCK_DIALOG_AUTHENTICATION. Bug #329438.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/EphyPromptService.cpp | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2006-02-01 Christian Persch <chpe@cvs.gnome.org> + + * embed/mozilla/EphyPromptService.cpp: + + Use GTK_STOCK_DIALOG_AUTHENTICATION. Bug #329438. + 2006-01-31 Christian Persch <chpe@cvs.gnome.org> * src/ephy-link-action.c: (ephy_link_action_group_new): diff --git a/embed/mozilla/EphyPromptService.cpp b/embed/mozilla/EphyPromptService.cpp index 6779b0c5c..265dd9f31 100644 --- a/embed/mozilla/EphyPromptService.cpp +++ b/embed/mozilla/EphyPromptService.cpp @@ -756,7 +756,7 @@ EphyPromptService::PromptUsernameAndPassword (nsIDOMWindow *aParent, NS_ENSURE_ARG_POINTER (aUsername); NS_ENSURE_ARG_POINTER (aPassword); - Prompter prompt (GTK_STOCK_DIALOG_QUESTION, aParent, aDialogTitle, aText); + Prompter prompt (GTK_STOCK_DIALOG_AUTHENTICATION, aParent, aDialogTitle, aText); prompt.AddStockButton (GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL); prompt.AddStockButton (GTK_STOCK_OK, GTK_RESPONSE_ACCEPT); prompt.AddEntry (_("_User:"), *aUsername, PR_FALSE); @@ -784,7 +784,7 @@ EphyPromptService::PromptPassword (nsIDOMWindow *aParent, NS_ENSURE_ARG_POINTER (_retval); NS_ENSURE_ARG_POINTER (aPassword); - Prompter prompt (GTK_STOCK_DIALOG_QUESTION, aParent, aDialogTitle, aText); + Prompter prompt (GTK_STOCK_DIALOG_AUTHENTICATION, aParent, aDialogTitle, aText); prompt.AddStockButton (GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL); prompt.AddStockButton (GTK_STOCK_OK, GTK_RESPONSE_ACCEPT); prompt.AddEntry (_("_Password:"), *aPassword, PR_TRUE); |