diff options
author | Jon Oberheide <jon@focalhost.com> | 2004-05-21 10:37:04 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-05-21 10:37:04 +0800 |
commit | ddbf9a489f03a5981e724009bae547c7da9c5447 (patch) | |
tree | 5e91e2a5525241b75ee83cbaa4e36898865b6625 /smime | |
parent | d4329193ff062d1925d856d80d177f068f964cfb (diff) | |
download | gsoc2013-evolution-ddbf9a489f03a5981e724009bae547c7da9c5447.tar.gz gsoc2013-evolution-ddbf9a489f03a5981e724009bae547c7da9c5447.tar.zst gsoc2013-evolution-ddbf9a489f03a5981e724009bae547c7da9c5447.zip |
add "Select certificate" title to the previously untitled dialog.
2004-05-17 Jon Oberheide <jon@focalhost.com>
* gui/e-cert-selector.c (e_cert_selector_new): add "Select
certificate" title to the previously untitled dialog.
svn path=/trunk/; revision=26026
Diffstat (limited to 'smime')
-rw-r--r-- | smime/ChangeLog | 5 | ||||
-rw-r--r-- | smime/gui/e-cert-selector.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/smime/ChangeLog b/smime/ChangeLog index 4a1c33df9d..d2f257ef17 100644 --- a/smime/ChangeLog +++ b/smime/ChangeLog @@ -1,3 +1,8 @@ +2004-05-17 Jon Oberheide <jon@focalhost.com> + + * gui/e-cert-selector.c (e_cert_selector_new): add "Select + certificate" title to the previously untitled dialog. + 2004-05-19 James Willcox <jwillcox@gnome.org> * lib/e-cert-db.c: (pk11_password): diff --git a/smime/gui/e-cert-selector.c b/smime/gui/e-cert-selector.c index dee88b8fa3..31cfcdc1a2 100644 --- a/smime/gui/e-cert-selector.c +++ b/smime/gui/e-cert-selector.c @@ -166,6 +166,7 @@ e_cert_selector_new(int type, const char *currentid) w = glade_xml_get_widget(gui, "cert_selector_vbox"); gtk_box_pack_start((GtkBox *)((GtkDialog *)ecs)->vbox, w, TRUE, TRUE, 3); + gtk_window_set_title(GTK_WINDOW(ecs), _("Select certificate")); switch (type) { case E_CERT_SELECTOR_SIGNER: |