From 7c9fac1f90c71124eda269acd2b87b7149f9002c Mon Sep 17 00:00:00 2001 From: Rodney Dawes Date: Tue, 22 Feb 2005 18:53:57 +0000 Subject: The GladeXML object is no longer a part of the private structure, and we 2005-02-22 Rodney Dawes * 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 svn path=/trunk/; revision=28850 --- mail/ChangeLog | 6 ++++++ mail/em-account-editor.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'mail') 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 + + * 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 ** 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 */ -- cgit