diff options
author | Not Zed <NotZed@Ximian.com> | 2004-04-27 15:10:29 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-04-27 15:10:29 +0800 |
commit | e7a62ede3ba856b423ac3af428ac856a09495c39 (patch) | |
tree | eb95d8722140cc60e49ec98799384a1f46bcbc75 | |
parent | 810dd44603138cdda3bfca0124cbde1de6319a85 (diff) | |
download | gsoc2013-evolution-e7a62ede3ba856b423ac3af428ac856a09495c39.tar.gz gsoc2013-evolution-e7a62ede3ba856b423ac3af428ac856a09495c39.tar.zst gsoc2013-evolution-e7a62ede3ba856b423ac3af428ac856a09495c39.zip |
** See bug #57511.
2004-04-27 Not Zed <NotZed@Ximian.com>
** See bug #57511.
* mail-config.glade: gave the whole smime frame (vbox) a name so
we can use it from code.
* mail-account-gui.c (mail_account_gui_new): get the smime_vbox
widget if we have no NSS, the name changed and the HIG patches
didn't fix it.
svn path=/trunk/; revision=25622
-rw-r--r-- | mail/ChangeLog | 11 | ||||
-rw-r--r-- | mail/mail-account-gui.c | 2 | ||||
-rw-r--r-- | mail/mail-config.glade | 2 |
3 files changed, 13 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 00a25ef628..ac324c8686 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,14 @@ +2004-04-27 Not Zed <NotZed@Ximian.com> + + ** See bug #57511. + + * mail-config.glade: gave the whole smime frame (vbox) a name so + we can use it from code. + + * mail-account-gui.c (mail_account_gui_new): get the smime_vbox + widget if we have no NSS, the name changed and the HIG patches + didn't fix it. + 2004-04-26 Radek Doulik <rodo@ximian.com> * em-format-html.c (efh_format_timeout): set gtk_html_begin's diff --git a/mail/mail-account-gui.c b/mail/mail-account-gui.c index ed91f4ae29..33d61d1705 100644 --- a/mail/mail-account-gui.c +++ b/mail/mail-account-gui.c @@ -1908,7 +1908,7 @@ mail_account_gui_new (EAccount *account, EMAccountPrefs *dialog) /* Since we don't have NSS, hide the S/MIME config options */ GtkWidget *frame; - frame = glade_xml_get_widget (gui->xml, "smime_frame"); + frame = glade_xml_get_widget (gui->xml, "smime_vbox"); gtk_widget_destroy (frame); } #endif /* HAVE_NSS */ diff --git a/mail/mail-config.glade b/mail/mail-config.glade index 93f0301c31..33e0a1c252 100644 --- a/mail/mail-config.glade +++ b/mail/mail-config.glade @@ -3605,7 +3605,7 @@ For example: "Work" or "Personal"</property> </child> <child> - <widget class="GtkVBox" id="vbox185"> + <widget class="GtkVBox" id="smime_vbox"> <property name="visible">True</property> <property name="homogeneous">False</property> <property name="spacing">6</property> |