aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-format-html-display.c
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@src.gnome.org>2007-02-08 02:15:06 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2007-02-08 02:15:06 +0800
commitfcd71ac61c71c2768d85cab4a26261d89452b0db (patch)
treee442336bc8a6cb7321e77842fb4fea95b3008b3e /mail/em-format-html-display.c
parent1f9d4b0a9e5e49adc995e6e2315ade7badc769b0 (diff)
downloadgsoc2013-evolution-fcd71ac61c71c2768d85cab4a26261d89452b0db.tar
gsoc2013-evolution-fcd71ac61c71c2768d85cab4a26261d89452b0db.tar.gz
gsoc2013-evolution-fcd71ac61c71c2768d85cab4a26261d89452b0db.tar.bz2
gsoc2013-evolution-fcd71ac61c71c2768d85cab4a26261d89452b0db.tar.lz
gsoc2013-evolution-fcd71ac61c71c2768d85cab4a26261d89452b0db.tar.xz
gsoc2013-evolution-fcd71ac61c71c2768d85cab4a26261d89452b0db.tar.zst
gsoc2013-evolution-fcd71ac61c71c2768d85cab4a26261d89452b0db.zip
Fixes bug #353921
svn path=/trunk/; revision=33180
Diffstat (limited to 'mail/em-format-html-display.c')
-rw-r--r--mail/em-format-html-display.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mail/em-format-html-display.c b/mail/em-format-html-display.c
index 4c8f16444b..24afd40ba6 100644
--- a/mail/em-format-html-display.c
+++ b/mail/em-format-html-display.c
@@ -678,11 +678,12 @@ em_format_html_get_search_dialog (EMFormatHTMLDisplay *efhd)
gtk_box_pack_start ((GtkBox *)(hbox2), p->search_entry_box, FALSE, FALSE, 5);
// gtk_box_pack_start ((GtkBox *)(hbox2), p->search_entry_box, TRUE, TRUE, 5);
- button3 = gtk_button_new_from_stock ("gtk-go-back");
+ button3 = gtk_button_new_with_mnemonic (_("_Previous"));
+ gtk_button_set_image (button3, gtk_image_new_from_stock(GTK_STOCK_GO_BACK, GTK_ICON_SIZE_BUTTON));
gtk_widget_show (button3);
gtk_box_pack_start ((GtkBox *)(hbox2), button3, FALSE, FALSE, 5);
- button2 = gtk_button_new_with_mnemonic (_("Fo_rward"));
+ button2 = gtk_button_new_with_mnemonic (_("_Next"));
gtk_button_set_image (button2, gtk_image_new_from_stock(GTK_STOCK_GO_FORWARD, GTK_ICON_SIZE_BUTTON));
gtk_widget_show (button2);
gtk_box_pack_start ((GtkBox *)(hbox2), button2, FALSE, FALSE, 5);