Add mnemonics. Sorry translators.

Mon Feb 23 21:09:06 2004  Jonathan Blandford  <jrb@gnome.org>

        * gtk/gtkfilechooserdefault.c (shortcuts_pane_create): Add
        mnemonics.  Sorry translators.
This commit is contained in:
Jonathan Blandford 2004-02-24 02:09:20 +00:00 committed by Jonathan Blandford
parent 85e3d4f2be
commit 93732fb225
7 changed files with 29 additions and 7 deletions

View File

@ -1,3 +1,8 @@
Mon Feb 23 21:09:06 2004 Jonathan Blandford <jrb@gnome.org>
* gtk/gtkfilechooserdefault.c (shortcuts_pane_create): Add
mnemonics. Sorry translators.
Tue Feb 24 02:24:58 2004 Matthias Clasen <maclas@gmx.de>
* NEWS: Additions. This should be complete for the main ChangeLog

View File

@ -1,3 +1,8 @@
Mon Feb 23 21:09:06 2004 Jonathan Blandford <jrb@gnome.org>
* gtk/gtkfilechooserdefault.c (shortcuts_pane_create): Add
mnemonics. Sorry translators.
Tue Feb 24 02:24:58 2004 Matthias Clasen <maclas@gmx.de>
* NEWS: Additions. This should be complete for the main ChangeLog

View File

@ -1,3 +1,8 @@
Mon Feb 23 21:09:06 2004 Jonathan Blandford <jrb@gnome.org>
* gtk/gtkfilechooserdefault.c (shortcuts_pane_create): Add
mnemonics. Sorry translators.
Tue Feb 24 02:24:58 2004 Matthias Clasen <maclas@gmx.de>
* NEWS: Additions. This should be complete for the main ChangeLog

View File

@ -1,3 +1,8 @@
Mon Feb 23 21:09:06 2004 Jonathan Blandford <jrb@gnome.org>
* gtk/gtkfilechooserdefault.c (shortcuts_pane_create): Add
mnemonics. Sorry translators.
Tue Feb 24 02:24:58 2004 Matthias Clasen <maclas@gmx.de>
* NEWS: Additions. This should be complete for the main ChangeLog

View File

@ -1,3 +1,8 @@
Mon Feb 23 21:09:06 2004 Jonathan Blandford <jrb@gnome.org>
* gtk/gtkfilechooserdefault.c (shortcuts_pane_create): Add
mnemonics. Sorry translators.
Tue Feb 24 02:24:58 2004 Matthias Clasen <maclas@gmx.de>
* NEWS: Additions. This should be complete for the main ChangeLog

View File

@ -107,10 +107,6 @@ gtk_cell_renderer_sep_get_size (GtkCellRenderer *cell,
if (x_offset) *x_offset = 0;
if (y_offset) *y_offset = 0;
if (cell_area)
{
}
}
else
{

View File

@ -1068,7 +1068,8 @@ button_new (GtkFileChooserDefault *impl,
gtk_box_pack_start (GTK_BOX (hbox), widget, FALSE, FALSE, 0);
widget = gtk_label_new (text);
widget = gtk_label_new_with_mnemonic (text);
gtk_label_set_mnemonic_widget (GTK_LABEL (widget), GTK_WIDGET (button));
gtk_box_pack_start (GTK_BOX (hbox), widget, FALSE, FALSE, 0);
gtk_widget_set_sensitive (button, sensitive);
@ -1462,7 +1463,7 @@ shortcuts_pane_create (GtkFileChooserDefault *impl,
/* Add bookmark button */
impl->add_bookmark_button = button_new (impl,
_("Add"),
_("_Add"),
GTK_STOCK_ADD,
FALSE,
TRUE,
@ -1472,7 +1473,7 @@ shortcuts_pane_create (GtkFileChooserDefault *impl,
/* Remove bookmark button */
impl->remove_bookmark_button = button_new (impl,
_("Remove"),
_("_Remove"),
GTK_STOCK_REMOVE,
FALSE,
TRUE,