aboutsummaryrefslogtreecommitdiffstats
path: root/smime
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2004-03-20 01:08:39 +0800
committerChris Toshok <toshok@src.gnome.org>2004-03-20 01:08:39 +0800
commitcbf19122aa77b1b420837cea065b299b73f9934a (patch)
tree714d9bf1b75df4e8e7e1d6b80307b28043be345b /smime
parent192898d3d00155d9d338310e23cdb12a569788f4 (diff)
downloadgsoc2013-evolution-cbf19122aa77b1b420837cea065b299b73f9934a.tar
gsoc2013-evolution-cbf19122aa77b1b420837cea065b299b73f9934a.tar.gz
gsoc2013-evolution-cbf19122aa77b1b420837cea065b299b73f9934a.tar.bz2
gsoc2013-evolution-cbf19122aa77b1b420837cea065b299b73f9934a.tar.lz
gsoc2013-evolution-cbf19122aa77b1b420837cea065b299b73f9934a.tar.xz
gsoc2013-evolution-cbf19122aa77b1b420837cea065b299b73f9934a.tar.zst
gsoc2013-evolution-cbf19122aa77b1b420837cea065b299b73f9934a.zip
[ fixes bug #52667 ]
2004-03-19 Chris Toshok <toshok@ximian.com> [ fixes bug #52667 ] * gui/certificate-manager.c (import_ca): don't expand the CA tree by default. (populate_ui): same. svn path=/trunk/; revision=25133
Diffstat (limited to 'smime')
-rw-r--r--smime/ChangeLog8
-rw-r--r--smime/gui/certificate-manager.c2
2 files changed, 8 insertions, 2 deletions
diff --git a/smime/ChangeLog b/smime/ChangeLog
index fd54b722fb..853d893eba 100644
--- a/smime/ChangeLog
+++ b/smime/ChangeLog
@@ -1,5 +1,13 @@
2004-03-19 Chris Toshok <toshok@ximian.com>
+ [ fixes bug #52667 ]
+
+ * gui/certificate-manager.c (import_ca): don't expand the CA tree
+ by default.
+ (populate_ui): same.
+
+2004-03-19 Chris Toshok <toshok@ximian.com>
+
[ fixes bug #52829 ]
* lib/smime-marshal.list: add BOOL:POINTER,POINTER for
diff --git a/smime/gui/certificate-manager.c b/smime/gui/certificate-manager.c
index 6c47e78f3b..94698d2264 100644
--- a/smime/gui/certificate-manager.c
+++ b/smime/gui/certificate-manager.c
@@ -474,7 +474,6 @@ import_ca (GtkWidget *widget, CertificateManagerData *cfm)
so we blow away the CA cert display and regenerate it. */
unload_certs (cfm, E_CERT_CA);
load_certs (cfm, E_CERT_CA, add_ca_cert);
- gtk_tree_view_expand_all (GTK_TREE_VIEW (cfm->authoritycerts_treeview));
}
}
@@ -806,7 +805,6 @@ populate_ui (CertificateManagerData *cfm)
/* expand all three trees */
gtk_tree_view_expand_all (GTK_TREE_VIEW (cfm->yourcerts_treeview));
gtk_tree_view_expand_all (GTK_TREE_VIEW (cfm->contactcerts_treeview));
- gtk_tree_view_expand_all (GTK_TREE_VIEW (cfm->authoritycerts_treeview));
}
EvolutionConfigControl*