diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2001-01-09 04:51:24 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-01-09 04:51:24 +0800 |
commit | 875c9d02c44ae6a0b0c1485e7e61a9dd25c5add7 (patch) | |
tree | 2194c53dcb2b8a319b6799dc93d75d9eba5184c8 /mail/mail-format.c | |
parent | 6054c6897b77256c6a021280c123657429c02757 (diff) | |
download | gsoc2013-evolution-875c9d02c44ae6a0b0c1485e7e61a9dd25c5add7.tar gsoc2013-evolution-875c9d02c44ae6a0b0c1485e7e61a9dd25c5add7.tar.gz gsoc2013-evolution-875c9d02c44ae6a0b0c1485e7e61a9dd25c5add7.tar.bz2 gsoc2013-evolution-875c9d02c44ae6a0b0c1485e7e61a9dd25c5add7.tar.lz gsoc2013-evolution-875c9d02c44ae6a0b0c1485e7e61a9dd25c5add7.tar.xz gsoc2013-evolution-875c9d02c44ae6a0b0c1485e7e61a9dd25c5add7.tar.zst gsoc2013-evolution-875c9d02c44ae6a0b0c1485e7e61a9dd25c5add7.zip |
Reverted mail-config changes temporarily until I get it working correctly.
2001-01-08 Jeffrey Stedfast <fejj@helixcode.com>
* Makefile.am:
* component-factory.c:
* folder-browser-factory.c:
* folder-browser.c:
* mail-callbacks.c:
* mail-config.[c,h]:
* mail-display.c:
* mail-format.c:
* mail-tools.c: Reverted mail-config changes temporarily until
I get it working correctly.
svn path=/trunk/; revision=7305
Diffstat (limited to 'mail/mail-format.c')
-rw-r--r-- | mail/mail-format.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c index aaefd4856f..c4f9ef2b7c 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -1654,7 +1654,7 @@ mail_generate_reply (CamelMimeMessage *message, gboolean to_all) const char *message_id, *references; const char *name = NULL, *address = NULL; GList *to = NULL, *cc = NULL; - const MailConfigIdentity *id; + MailConfigIdentity *id; gchar *sig_file = NULL; const CamelInternetAddress *reply_to, *sender; time_t date; @@ -1662,9 +1662,9 @@ mail_generate_reply (CamelMimeMessage *message, gboolean to_all) id = mail_config_get_default_identity (); if (id) - sig_file = id->signature; + sig_file = id->sig; - composer = e_msg_composer_new_with_sig_file (sig_file, mail_config_get_send_html ()); + composer = e_msg_composer_new_with_sig_file (sig_file, mail_config_send_html ()); if (!composer) return NULL; |