diff options
author | Chris Toshok <toshok@ximian.com> | 2004-03-20 01:08:39 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2004-03-20 01:08:39 +0800 |
commit | cbf19122aa77b1b420837cea065b299b73f9934a (patch) | |
tree | 714d9bf1b75df4e8e7e1d6b80307b28043be345b | |
parent | 192898d3d00155d9d338310e23cdb12a569788f4 (diff) | |
download | gsoc2013-evolution-cbf19122aa77b1b420837cea065b299b73f9934a.tar.gz 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
-rw-r--r-- | smime/ChangeLog | 8 | ||||
-rw-r--r-- | smime/gui/certificate-manager.c | 2 |
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* |