evolution r35919 - trunk/mail
- From: mbarnes svn gnome org
- To: svn-commits-list gnome org
- Subject: evolution r35919 - trunk/mail
- Date: Thu, 7 Aug 2008 04:11:02 +0000 (UTC)
Author: mbarnes
Date: Thu Aug 7 04:11:01 2008
New Revision: 35919
URL: http://svn.gnome.org/viewvc/evolution?rev=35919&view=rev
Log:
2008-08-07 Matthew Barnes <mbarnes redhat com>
* em-format.c (emf_format_secure):
* em-format-html-display.c (efhd_xpkcs7mime_add_cert_table):
Use CamelDList instead of EDList.
Modified:
trunk/mail/ChangeLog
trunk/mail/em-format-html-display.c
trunk/mail/em-format.c
Modified: trunk/mail/em-format-html-display.c
==============================================================================
--- trunk/mail/em-format-html-display.c (original)
+++ trunk/mail/em-format-html-display.c Thu Aug 7 04:11:01 2008
@@ -1030,10 +1030,10 @@
#endif
static void
-efhd_xpkcs7mime_add_cert_table(GtkWidget *vbox, EDList *certlist, struct _smime_pobject *po)
+efhd_xpkcs7mime_add_cert_table(GtkWidget *vbox, CamelDList *certlist, struct _smime_pobject *po)
{
CamelCipherCertInfo *info = (CamelCipherCertInfo *)certlist->head;
- GtkTable *table = (GtkTable *)gtk_table_new(e_dlist_length(certlist), 2, FALSE);
+ GtkTable *table = (GtkTable *)gtk_table_new(camel_dlist_length(certlist), 2, FALSE);
int n = 0;
while (info->next) {
@@ -1135,7 +1135,7 @@
gtk_box_pack_start((GtkBox *)vbox, w, TRUE, TRUE, 6);
}
- if (!e_dlist_empty(&po->valid->sign.signers))
+ if (!camel_dlist_empty(&po->valid->sign.signers))
efhd_xpkcs7mime_add_cert_table(vbox, &po->valid->sign.signers, po);
gtk_widget_show_all(vbox);
@@ -1167,7 +1167,7 @@
gtk_box_pack_start((GtkBox *)vbox, w, TRUE, TRUE, 6);
}
- if (!e_dlist_empty(&po->valid->encrypt.encrypters))
+ if (!camel_dlist_empty(&po->valid->encrypt.encrypters))
efhd_xpkcs7mime_add_cert_table(vbox, &po->valid->encrypt.encrypters, po);
gtk_widget_show_all(vbox);
Modified: trunk/mail/em-format.c
==============================================================================
--- trunk/mail/em-format.c (original)
+++ trunk/mail/em-format.c Thu Aug 7 04:11:01 2008
@@ -735,7 +735,7 @@
if (emf->valid == NULL) {
emf->valid = valid;
} else {
- e_dlist_addtail(&emf->valid_parent->children, (EDListNode *)valid);
+ camel_dlist_addtail(&emf->valid_parent->children, (CamelDListNode *)valid);
camel_cipher_validity_envelope(emf->valid_parent, valid);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]