Use header capitalization for the buttons, per the HIG.

2005-07-15  Federico Mena Quintero  <federico@ximian.com>

	* gtk/gtkfilechooserdefault.c
	(confirm_dialog_should_accept_filename): Use header capitalization
	for the buttons, per the HIG.
This commit is contained in:
Federico Mena Quintero 2005-07-15 06:16:20 +00:00 committed by Federico Mena Quintero
parent adc0905af3
commit dfda674070
4 changed files with 14 additions and 2 deletions

View File

@ -1,5 +1,9 @@
2005-07-15 Federico Mena Quintero <federico@ximian.com>
* gtk/gtkfilechooserdefault.c
(confirm_dialog_should_accept_filename): Use header capitalization
for the buttons, per the HIG.
* gtk/gtk.symbols: Add the new functions.
* tests/testfilechooser.c (confirm_overwrite_cb): Add a test for

View File

@ -1,5 +1,9 @@
2005-07-15 Federico Mena Quintero <federico@ximian.com>
* gtk/gtkfilechooserdefault.c
(confirm_dialog_should_accept_filename): Use header capitalization
for the buttons, per the HIG.
* gtk/gtk.symbols: Add the new functions.
* tests/testfilechooser.c (confirm_overwrite_cb): Add a test for

View File

@ -1,5 +1,9 @@
2005-07-15 Federico Mena Quintero <federico@ximian.com>
* gtk/gtkfilechooserdefault.c
(confirm_dialog_should_accept_filename): Use header capitalization
for the buttons, per the HIG.
* gtk/gtk.symbols: Add the new functions.
* tests/testfilechooser.c (confirm_overwrite_cb): Add a test for

View File

@ -5958,8 +5958,8 @@ confirm_dialog_should_accept_filename (GtkFileChooserDefault *impl,
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
_("Do you want to replace it with the one you are saving?"));
add_custom_button_to_dialog (GTK_DIALOG (dialog), _("_Select another file"), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL);
add_custom_button_to_dialog (GTK_DIALOG (dialog), _("_Replace existing file"), GTK_STOCK_REFRESH, GTK_RESPONSE_ACCEPT);
add_custom_button_to_dialog (GTK_DIALOG (dialog), _("_Select Another File"), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL);
add_custom_button_to_dialog (GTK_DIALOG (dialog), _("_Replace Existing File"), GTK_STOCK_REFRESH, GTK_RESPONSE_ACCEPT);
gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_CANCEL);
response = gtk_dialog_run (GTK_DIALOG (dialog));