]> Pileus Git - ~andy/gtk/commitdiff
Use header capitalization for the buttons, per the HIG.
authorFederico Mena Quintero <federico@ximian.com>
Fri, 15 Jul 2005 06:16:20 +0000 (06:16 +0000)
committerFederico Mena Quintero <federico@src.gnome.org>
Fri, 15 Jul 2005 06:16:20 +0000 (06:16 +0000)
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.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-8
gtk/gtkfilechooserdefault.c

index d7dd829f46f67d668c4d544f727d5785ae53e46f..8ab8e3ba01d132db793059ff59ecf399506a85dc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index d7dd829f46f67d668c4d544f727d5785ae53e46f..8ab8e3ba01d132db793059ff59ecf399506a85dc 100644 (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
index d7dd829f46f67d668c4d544f727d5785ae53e46f..8ab8e3ba01d132db793059ff59ecf399506a85dc 100644 (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
index 49b5ab4d5fb6118d28873e320138997f66ccfd81..8b23b2cbb27146ae02ee4a4a377ed3c0d141b5da 100644 (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));