aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodney Dawes <dobey@novell.com>2005-02-23 02:53:57 +0800
committerRodney Dawes <dobey@src.gnome.org>2005-02-23 02:53:57 +0800
commit7c9fac1f90c71124eda269acd2b87b7149f9002c (patch)
treeb426fada8410a90b7ace394ad3efa12f0c4b38b8
parent436f7e0d9b5854ed6c8b62b1be03f94b49636eaf (diff)
downloadgsoc2013-evolution-7c9fac1f90c71124eda269acd2b87b7149f9002c.tar
gsoc2013-evolution-7c9fac1f90c71124eda269acd2b87b7149f9002c.tar.gz
gsoc2013-evolution-7c9fac1f90c71124eda269acd2b87b7149f9002c.tar.bz2
gsoc2013-evolution-7c9fac1f90c71124eda269acd2b87b7149f9002c.tar.lz
gsoc2013-evolution-7c9fac1f90c71124eda269acd2b87b7149f9002c.tar.xz
gsoc2013-evolution-7c9fac1f90c71124eda269acd2b87b7149f9002c.tar.zst
gsoc2013-evolution-7c9fac1f90c71124eda269acd2b87b7149f9002c.zip
The GladeXML object is no longer a part of the private structure, and we
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 svn path=/trunk/; revision=28850
-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 */