aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/em-account-editor.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index e5534fc811..7da34d8aff 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,9 @@
+2005-02-22 Rodney Dawes <dobey@novell.com>
+
+ * em-account-editor.c (emae_security_page): The GladeXML object is
+ no longer a part of the private structure, and we need to reference
+ it directly as it is a local variable now
+
2005-02-14 Not Zed <NotZed@Ximian.com>
** See bug #61363 & e-util/ChangeLog
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c
index 2b6e6aa8b3..ac191caef5 100644
--- a/mail/em-account-editor.c
+++ b/mail/em-account-editor.c
@@ -2138,7 +2138,7 @@ emae_security_page(EConfig *ec, EConfigItem *item, struct _GtkWidget *parent, st
/* Since we don't have NSS, hide the S/MIME config options */
GtkWidget *frame;
- frame = glade_xml_get_widget (gui->xml, "smime_vbox");
+ frame = glade_xml_get_widget (xml, "smime_vbox");
gtk_widget_destroy (frame);
}
#endif /* HAVE_NSS */