diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-01-29 08:19:38 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-01-30 04:01:12 +0800 |
commit | 63eba7c310c6eb45a4a405911b4f0cec1c900afc (patch) | |
tree | 45396c72cebd7dbdf85eebdd80e4d6d17bfe8fe3 /em-format | |
parent | 9ff52b74c301d7846f05c9e7603c54dcc698e3b3 (diff) | |
download | gsoc2013-evolution-63eba7c310c6eb45a4a405911b4f0cec1c900afc.tar.gz gsoc2013-evolution-63eba7c310c6eb45a4a405911b4f0cec1c900afc.tar.zst gsoc2013-evolution-63eba7c310c6eb45a4a405911b4f0cec1c900afc.zip |
Adapt to Camel API changes.
Diffstat (limited to 'em-format')
-rw-r--r-- | em-format/em-format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/em-format/em-format.c b/em-format/em-format.c index 4647a70a79..71740b34c4 100644 --- a/em-format/em-format.c +++ b/em-format/em-format.c @@ -271,7 +271,7 @@ emf_format_secure (EMFormat *emf, if (emf->valid == NULL) { emf->valid = valid; } else { - camel_dlist_addtail (&emf->valid_parent->children, (CamelDListNode *) valid); + g_queue_push_tail (&emf->valid_parent->children, valid); camel_cipher_validity_envelope (emf->valid_parent, valid); } |